Skip to main content

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:

  1. The task signature must contain **kwargs for the workflow orchestration to function.
  2. 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()

Build & Publish

poetry install
poetry publish --build

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

sca_rhythm-0.3.1.tar.gz (6.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

sca_rhythm-0.3.1-py3-none-any.whl (6.7 kB view details)

Uploaded Python 3

File details

Details for the file sca_rhythm-0.3.1.tar.gz.

File metadata

  • Download URL: sca_rhythm-0.3.1.tar.gz
  • Upload date:
  • Size: 6.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.4.1 CPython/3.11.0 Darwin/21.6.0

File hashes

Hashes for sca_rhythm-0.3.1.tar.gz
Algorithm Hash digest
SHA256 e05d35e503e0b986064664d750e5bd4793cb6f1ca805edba58c5dca76189ed61
MD5 17ba6f36c6683bf7d6f184698bc2f7d8
BLAKE2b-256 dd38f16d21854b91a07b0add79b5bd38f0df8e7fa067c6a3c44c4051abc24af6

See more details on using hashes here.

File details

Details for the file sca_rhythm-0.3.1-py3-none-any.whl.

File metadata

  • Download URL: sca_rhythm-0.3.1-py3-none-any.whl
  • Upload date:
  • Size: 6.7 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

Hashes for sca_rhythm-0.3.1-py3-none-any.whl
Algorithm Hash digest
SHA256 29d049a4502c882a054f403d6e7449b3cb673abb40394a656da90e5c845363a0
MD5 5d1f0f8124ba9c0965ab24e6b9cb2ef1
BLAKE2b-256 21045a8491bdc8916dd56b9d1411032377692bcd2bd7f1ea488b4b19c0c1f703

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page