Skip to main content

UI to allow interactively starting Celery tasks

Project description

Van's Celery Task Runner

This set of tools will present a UI to:

  • search Celery tasks.
  • start Celery tasks with parameters.
  • Journaling of who ran what tasks.

Autodiscovery of Runnable Tasks

tasks_list

Task Running Form

task_run_form

Optional controls:

  • Whitelisting task names to only surface a subset of the tasks
  • Django permission control around who can see and run tasks

Run Result

run_result_task_id

Installation

  • Install the package: pip install vcelery-task-runner
  • Add into your project's settings.py:
    INSTALLED_APPS = [
        ...
        'rest_framework',
        'vcelerytaskrunner.apps.AppConfig',
    ]
    
    vcelery-task-runner uses the Django REST Library
  • Run migration for the vcelerytaskrunner app:
    python manage.py migrate vcelerytaskrunner
    
  • In settings.py, let vcelery-task-runner know your Celery app:
    # For example: from proj.celery import app as celery_app
    from celery import Celery
    
    from ... import app as celery_app
    
    assert isinstance(celery_app, Celery)
    
    # celery_app is a reference to your project's Celery app instance
    VCELERY_TASKRUN_CELERY_APP = celery_app
    
  • Optionally in settings.py, set the maximum age of run records to keep around (more about this below).
    VCELERY_TASK_RUN_RECORD_LONGEVITY = timedelta(weeks=52)  # Or however long you want to keep records of task runs
    

Configuration

Runnable Tasks

VCELERY_TASKRUN_RUNNABLE_TASKS

By default, all tasks are "runnable" in the UI. However, if you wan to restrict visibility to only a subset of the tasks, add into the project's settings.py:

VCELERY_TASKRUN_RUNNABLE_TASKS = {
    "vcelerydev.tasks.say_hello",  # full name of task
}

If you set up an empty set, NOTHING will be runnable (quick way to disable the run operation):

VCELERY_TASKRUN_RUNNABLE_TASKS = {
}

VCELERY_SHOW_ONLY_RUNNABLE_TASKS

Also by default, tasks not included in VCELERY_TASKRUN_RUNNABLE_TASKS will not be runnable but will be displayed in the list of tasks. If that is undesired, set the VCELERY_SHOW_ONLY_RUNNABLE_TASKS to True:

If set, then only runnable tasks are shown in the UI:

# Tasks not in VCELERY_TASKRUN_RUNNABLE_TASKS will not be displayed in the task list
VCELERY_SHOW_ONLY_RUNNABLE_TASKS = True

UI

There is a set of pages ready to list/search task by name and to run tasks. To add them to you app, add these entries into your main urls.py:

from django.urls import path
...
from vcelerytaskrunner.views import TasksAPIView, TasksView, TaskRunFormView

...

urlpatterns = [
    ...
    path('tasks/', TasksView.as_view(), name="vcelery-tasks"),
    path('task_run/', TaskRunFormView.as_view(), name="vcelery-task-run"),

    path('api/tasks/', TasksAPIView.as_view(), name="vcelery-api-tasks"),
    ....
]

The actual URL paths may vary according to your project's / app's needs. However, the names MUST be as shown because there are code that look up the views by name (e.g. django.urls.reverse("vcelery-task-run")), and they will fail if you don't use the names shown here.

The view classes obviously have to be the ones shown. Although if you looked at the code and have done so carefully, you may derive from the views to specialize them as needed.

Permissions

By default, only staff users have access to the UI. To add more users to the UI:

  • Add the permission vcelerytaskrunner.view_taskrunrecord to allow a user to view the initial page (listing of tasks).
  • Add ALSO the permission vcelerytaskrunner.add_taskrunrecord to allow a user to run a runnable task.

You are free to use groups to set this up.

TaskRunRecords

Each run of a task through the UI is recorded into the model vcelerytaskrunner.models.TaskRunRecord:

task_run_record_list

task_run_record

Pruning old records

Since each run is recorded, over time this table will grow large. Therefore, the VCELERY_TASK_RUN_RECORD_LONGEVITY setting is used to define the longevity of these records.

Each time the vcelerytaskrunner app is initialized:

  • a query is made to find TaskRunRecords created before datetime.utcnow() - VCELERY_TASK_RUN_RECORD_LONGEVITY
  • records older than this datetime will be removed.

If you don't explicitly define VCELERY_TASK_RUN_RECORD_LONGEVITY in your settings, the default value timedelta(weeks=4) will be used, meaning entries older than 4 weeks will be removed.

Permanent records

If you want to keep TaskRunRecords forever (or clean them up manually), then set VCELERY_TASK_RUN_RECORD_LONGEVITY to "PERMANENT":

# Don't try to prune old TaskRunRecords
VCELERY_TASK_RUN_RECORD_LONGEVITY = "PERMANENT"

TaskRunSignal

To be notified when a task is run, subscribe to the TaskRunSignal signal from TaskRunner from the module vcelerytaskrunner.services.task_runner:

from vcelerytaskrunner.services.task_runner import TaskRunSignal, TaskRunner

...

@receiver(TaskRunSignal, sender=TaskRunner)
def task_run_listener(sender, **kwargs):
    """
    Example of a signal handler for task run events.
    """
    task_name = kwargs['task_name']
    task_id = kwargs['task_id']
    task_run_args = kwargs['args']
    task_run_kwargs = kwargs['kwargs']
    user = kwargs.get('user')

    logger.info(
        f"task_run_listener: task {task_name} (ID {task_id}) run by {user}"
        f" with args={task_run_args}, kwargs={task_run_kwargs}"
    )

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

vcelery_task_runner-1.1.0.tar.gz (20.5 kB view details)

Uploaded Source

Built Distribution

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

vcelery_task_runner-1.1.0-py3-none-any.whl (25.4 kB view details)

Uploaded Python 3

File details

Details for the file vcelery_task_runner-1.1.0.tar.gz.

File metadata

  • Download URL: vcelery_task_runner-1.1.0.tar.gz
  • Upload date:
  • Size: 20.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.8.20

File hashes

Hashes for vcelery_task_runner-1.1.0.tar.gz
Algorithm Hash digest
SHA256 2c926559f4fe8dc9c9a22fb696a9bd94889010fd23e28071d6faa4087e7dddc3
MD5 df9f41f9ffb1824ea36143889387c428
BLAKE2b-256 c5efa6bb7fb35a1934fbd5dd52d0bdd9bb198ad9934347d7c8166358d3ed8f1f

See more details on using hashes here.

File details

Details for the file vcelery_task_runner-1.1.0-py3-none-any.whl.

File metadata

File hashes

Hashes for vcelery_task_runner-1.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 f8e692709f3d9f94143f7a985dc2a97d6e223027769e182b54c7a8c462ac08b0
MD5 c626bddf4f33dd9362af7a4c36470808
BLAKE2b-256 53ab06f7b6fc21d67a9bf87fb7b74a83019c0b0e4f97dec7619f5c47070682e9

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