Create and manage workflows using Celery tasks
Project description
Rhythm
Rhythm allows you to design and control workflows made of Celery tasks. A workflow is a sequence of steps to run one after the other. Rhythm simplifies the process of executing workflows consisting of long-running tasks with reliability.
The following are the features of Rhythm workflows:
- If a workflow consisting of three steps (S1, S2, and S3) encounters a failure while executing S2 (even after retries by Celery), it is possible to resume the workflow later. Resuming the workflow with restart S2 with previous arguments and after its completion S3 will be run.
- A workflow can be paused and resumed later.
- You can keep track of which step is currently running, as well as its progress.
Prerequisites
Celery app should be configured with a mongo database backend.
Create Tasks with WorkflowTask class
import os
import time
from celery import Celery
from sca_rhythm import WorkflowTask
app = Celery("tasks")
@app.task(base=WorkflowTask, bind=True)
def task1(self, batch_id, **kwargs):
print(f'task - {os.getpid()} 1 starts with {batch_id}')
# do work
time.sleep(1)
# update progress to result backend
# sets the task's state as "PROGRESS"
self.update_progress({
done: 2873,
total: 100000
})
# do some more work
return batch_id, {'return_obj': 'foo'}
:warning: Task Constraints :warning:
- The task signature must contain
**kwargsfor the workflow orchestration to function. - The return type must be of list / tuple type and the first element of the return value is sent to the next task as its argument.
Create Workflows with Workflow class
from celery import Celery
from sca_rhythm import Workflow
steps = [
{
'name': 'inspect',
'task': 'tasks.inspect'
},
{
'name': 'archive',
'task': 'tasks.archive'
},
{
'name': 'stage',
'task': 'tasks.stage'
}
]
wf = Workflow(app, steps=steps, name='archive_batch')
wf.start('batch-id-test')
Pause and Resume Workflows
Pausing a workflow stop the current running task and resuming a workflow will restart the stopped task with the same arguments.
wf = Workflow(app, workflow_id='2f87decb-a431-472b-b26e-32c894993881')
wf.pause()
wf.resume()
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file sca_rhythm-0.1.3.tar.gz.
File metadata
- Download URL: sca_rhythm-0.1.3.tar.gz
- Upload date:
- Size: 5.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.4.1 CPython/3.11.0 Darwin/21.6.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
97d2634480ccceb1e3c06e96419246574bc38300f7cbd78ef343cd057450c183
|
|
| MD5 |
92cace2e3eac73678cac3851a1e1e95d
|
|
| BLAKE2b-256 |
169fbb4c6d0dd62d92466dc2a15fc093604ca9d07512814bc2e29fcba2bfb899
|
File details
Details for the file sca_rhythm-0.1.3-py3-none-any.whl.
File metadata
- Download URL: sca_rhythm-0.1.3-py3-none-any.whl
- Upload date:
- Size: 6.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.4.1 CPython/3.11.0 Darwin/21.6.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bd77739729464aacebbf25663f2e8f52f5aaea2985d35676ebc4791987e267d1
|
|
| MD5 |
c03fd258e3dcec491eb6959a625c91d1
|
|
| BLAKE2b-256 |
cfd9c254a3caf5679be55b59a784b8aa9491bb422aaa529dc8d6351cddbf9b4b
|