Netflix Conductor Python SDK
Project description
Conductor Python
Software Development Kit for Netflix Conductor, written on Python.
Set up Conductor
- Clone Netflix Conductor repository: https://github.com/Netflix/conductor
$ git clone https://github.com/Netflix/conductor.git
- Start Conductor server by running this command at the repo root folder (
/conductor
):$ ./gradlew bootRun
- Start Conductor UI by running this command at the UI folder (
/conductor/ui
):$ yarn install $ yarn run start
You should be able to access:
- Conductor API:
- Conductor UI:
Install Python SDK package
// TODO
Run
Create new task
You need to define a Task within Conductor that your Python Worker
is capable of running.
Make a POST request to /metadata/taskdefs
endpoint at your conductor server.
- URL example:
http://localhost:8080/api/metadata/taskdefs
- Task Definition example:
[ { "name": "simple_python_worker", "description": "Simple Python Worker", "retryCount": 3, "retryLogic": "FIXED", "retryDelaySeconds": 10, "timeoutSeconds": 300, "timeoutPolicy": "TIME_OUT_WF", "responseTimeoutSeconds": 180, "ownerEmail": "example@example.com" } ]
- Command example:
$ curl -X 'POST' \ 'http://localhost:8080/api/metadata/taskdefs' \ -H 'accept: */*' \ -H 'Content-Type: application/json' \ -d '[ { "name": "simple_python_worker", "description": "Simple Python Worker", "retryCount": 3, "retryLogic": "FIXED", "retryDelaySeconds": 10, "timeoutSeconds": 300, "timeoutPolicy": "TIME_OUT_WF", "responseTimeoutSeconds": 180, "ownerEmail": "example@example.com" } ]'
Create new workflow
You need to define a Workflow within Conductor that contains the Task you had just defined.
Make a POST request to /metadata/workflow
endpoint at your conductor server.
- URL example:
http://localhost:8080/api/metadata/workflow
- Workflow Definition example:
{ "createTime": 1634021619147, "updateTime": 1630694890267, "name": "simple_workflow_with_python_worker", "description": "Simple Workflow with Python Worker", "version": 1, "tasks": [ { "name": "simple_python_worker", "taskReferenceName": "simple_python_worker_ref_1", "inputParameters": {}, "type": "SIMPLE" } ], "inputParameters": [], "outputParameters": { "workerOutput": "${simple_python_worker_ref_1.output}" }, "schemaVersion": 2, "restartable": true, "ownerEmail": "example@example.com", "timeoutPolicy": "ALERT_ONLY", "timeoutSeconds": 0 }
- Command example:
$ curl -X 'POST' \ 'http://localhost:8080/api/metadata/workflow' \ -H 'accept: */*' \ -H 'Content-Type: application/json' \ -d '{ "createTime": 1634021619147, "updateTime": 1630694890267, "name": "simple_workflow_with_python_worker", "description": "Simple Workflow with Python Worker", "version": 1, "tasks": [ { "name": "simple_python_worker", "taskReferenceName": "simple_python_worker_ref_1", "inputParameters": {}, "type": "SIMPLE" } ], "inputParameters": [], "outputParameters": { "workerOutput": "${simple_python_worker_ref_1.output}" }, "schemaVersion": 2, "restartable": true, "ownerEmail": "example@example.com", "timeoutPolicy": "ALERT_ONLY", "timeoutSeconds": 0 }'
Start new workflow
Now that you have defined a Task and a Workflow within Conductor, you should be able to run it.
Make a POST request to /workflow/{name}
endpoint at your conductor server.
- URL example:
http://localhost:8080/api/workflow/simple_workflow_with_python_worker
- Priority should be empty
- Request body should be empty, like:
{}
- Command example:
$ curl -X 'POST' \ 'http://localhost:8080/api/workflow/simple_workflow_with_python_worker' \ -H 'accept: text/plain' \ -H 'Content-Type: application/json' \ -d '{}'
- Create a bunch of workflows:
$ export CREATE_WORKFLOW_SHORTCUT="curl -X 'POST' \ 'http://localhost:8080/api/workflow/simple_workflow_with_python_worker' \ -H 'accept: text/plain' \ -H 'Content-Type: application/json' \ -d '{}' \ -s" $ for idx in {1..100}; do \ echo "Creating workflow ${idx}"; \ workflow_id=$(eval "${CREATE_WORKFLOW_SHORTCUT}"); \ echo "workflow_id=${workflow_id}"; \ done
- Expected output example:
Creating workflow 1 workflow_id=6dd2c86b-5ce6-487a-9a65-632139da1345 Creating workflow 2 workflow_id=b0ddfdcf-0c4a-4fd3-892c-97fc38c46d63 ...
- Expected output example:
You should receive a Workflow ID at the Response body
- Workflow ID example:
8ff0bc06-4413-4c94-b27a-b3210412a914
See workflow execution
Now you must be able to see its execution through the UI.
- URL:
- prefix:
http://localhost:5001/execution
- suffix:
${workflow_id}
- prefix:
- Example:
http://localhost:5001/execution/8ff0bc06-4413-4c94-b27a-b3210412a914
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file conductor-python-1.0.1.tar.gz
.
File metadata
- Download URL: conductor-python-1.0.1.tar.gz
- Upload date:
- Size: 56.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.1 importlib_metadata/4.10.1 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | dfce84b95410b3918032faeea26a14de5a643cf5c25c729318db2b9078a4f378 |
|
MD5 | aa16b080e5817faf1ad629408cf3d3b0 |
|
BLAKE2b-256 | 1317f7d715248c0caf774616d048a90b558e8ccffb23554e7fee927aefd7a6a0 |
File details
Details for the file conductor_python-1.0.1-py3-none-any.whl
.
File metadata
- Download URL: conductor_python-1.0.1-py3-none-any.whl
- Upload date:
- Size: 95.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.1 importlib_metadata/4.10.1 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6c33f6825bf7d00d1208fe76a88cfdd6e8ac43f41f04fc727b88598deb579a09 |
|
MD5 | ec94d9e45f5972243b49f206384b7a56 |
|
BLAKE2b-256 | 3cd88ac4a8791305d92b57b909bdae3e92b614f0800d3d1dca79963b9958f72c |