Run lambda tasks inside a web assembly engine wasmer. Every execution spawns a new short lived process.
Install wapm, then install packages python and quickjs. Run:
WASMER_PATH=~/.wasmer/wasmer \
QUICKJS_PATH=~/.wasmer/globals/wapm_packages/_/[email protected]/build/qjs.wasm \
CONDUCTOR_URL=http://localhost:8089/api \
PYTHON_PATH=~/.wasmer/globals/wapm_packages/_/[email protected]/bin/python.wasm \
PYTHON_LIB_PATH=~/.wasmer/globals/wapm_packages/_/[email protected]/lib/ \
yarn start:dev
Currently supports two task types: GLOBAL___js
and GLOBAL___py
.
lambdaValue
- convention for storing task inputs. E.g. workflow input:${workflow.input.enter_your_name}
, result of previous task:${some_task_ref.output.result}
outputIsJson
- if set totrue
, output is interpreted as JSON and task will be marked as failed if parsing fails. Iffalse
, output is interpreted as plaintext. Any other value, including empty one, means output will be parsed as JSON, will fallback to plaintext on parsing failure.scriptExpression
- script to be executed
Task GLOBAL___js
uses QuickJs engine, compiled to wasm (demo).
Task result is written using print
(no newline is appended) or by return
ing the value (preferred).
Log messages are written using log
(preferred) or console.error
or console.log
. Newline is appended in any case.
Input data is available in $
global variable.
Use $.lambdaValue
to get task input.
This is backwards compatibile with
Lambda tasks
Task GLOBAL___py
uses CPython 3.6 compiled to wasm (demo).
Task result is written using print
(adds newline) or by return
ing the value (preferred).
It is possible to disable adding newline character using print('msg',end='')
syntax.
Log messages are written using log
. Newline is appended in both cases.
Input data is available in inputData
global variable.
Use inputData["lambdaValue"]
to get task input.
This example asks user for name, then executes:
- python task:
lambdaValue:
${workflow.input.enter_your_name}
log('logging from python')
name = inputData['lambdaValue']
return {'name': name}
- javascript task:
lambdaValue:
${create_json_ref.output.result}
log('logging from js');
var result = $.lambdaValue;
result.name_length = (result.name||'').length;
return result;
Assuming tenant 'fb-test' and user 'fbuser' are set up in Keycloak, use workflow-proxy
CONDUCTOR_API="http://localhost:8088/proxy/api"
SECURITY_HEADERS=(-H "x-tenant-id: fb-test" -H "from: fbuser")
To bypass proxy and go directly to conductor-server,
CONDUCTOR_API="http://localhost:8050/api"
SECURITY_HEADERS=()
POST to /metadata/workflow
curl -v \
"${SECURITY_HEADERS[@]}" \
-H 'Content-Type: application/json' \
${CONDUCTOR_API}/metadata/workflow -d @- << 'EOF'
{
"name": "wasm-example",
"description": "python and javascript lambdas running in wasm",
"ownerEmail": "[email protected]",
"version": 1,
"schemaVersion": 2,
"tasks": [
{
"taskReferenceName": "create_json_ref",
"name": "GLOBAL___py",
"inputParameters": {
"lambdaValue": "${workflow.input.enter_your_name}",
"outputIsJson": "true",
"scriptExpression": "log('logging from python')\nname = inputData['lambdaValue']\nreturn {'name': name}\n"
},
"type": "SIMPLE",
"startDelay": 0,
"optional": false,
"asyncComplete": false
},
{
"taskReferenceName": "calculate_name_length_ref",
"name": "GLOBAL___js",
"inputParameters": {
"lambdaValue": "${create_json_ref.output.result}",
"outputIsJson": "true",
"scriptExpression": "log('logging from js');\nvar result = $.lambdaValue;\nresult.name_length = (result.name||'').length;\nreturn result;\n"
},
"type": "SIMPLE",
"startDelay": 0,
"optional": false,
"asyncComplete": false
}
]
}
EOF
POST to /workflow
WORKFLOW_ID=$(curl -v \
"${SECURITY_HEADERS[@]}" \
-H 'Content-Type: application/json' \
$CONDUCTOR_API/workflow \
-d '
{
"name": "wasm-example",
"version": 1,
"input": {
"enter_your_name": "John"
}
}
')
Check result:
curl -v \
"${SECURITY_HEADERS[@]}" \
"${CONDUCTOR_API}/workflow/${WORKFLOW_ID}"
Output of the workflow execution should contain:
{
"result": {
"name": "John",
"name_length": 4
}
}
Check logs of each task (use taskId
from the output):
curl -v \
"${SECURITY_HEADERS[@]}" \
"${CONDUCTOR_API}/tasks/${TASK_ID}/log"
Sample response:
[{"log":"logging from js","taskId":"ffdf9d8a-19ff-410b-868c-329cb0d6b407","createdTime":1594813571032}]
Optionally delete testing workflow:
curl -v "${SECURITY_HEADERS[@]}" ${CONDUCTOR_API}/metadata/workflow/wasm-example/1 -X DELETE
- Syntax errors are printed to stdout
- Compared to QuickJs this approach introduces 5-200x worse latency for small scripts: ~30ms for QuickJs, ~.5s for Python
- Python needs writable lib directory, thus a temp directory needs to be created/deleted for each execution