Skip to main content

Integration of Django with dramatiq-pg

Project description

https://badge.fury.io/py/django-dramatiq-pg.svg https://img.shields.io/pypi/pyversions/django-dramatiq-pg.svg

dramatiq-pg integration for django.

Installation

  1. Install with pip

    $ pip install django-dramatiq-pg
  2. Add to your INSTALLED_APPS list in settings.py

    INSTALLED_APPS = [
        ...
        'django_dramatiq_pg',
    ]
  3. Create a Registry, and register your tasks

    from django_dramatiq_pg.registry import Registry
    
    tasks = Registry()
    
    
    @tasks.actor
    def mytask():
        ...
  4. Configure

    DRAMATIQ_BROKER = {
        "OPTIONS": {
            "url": "postgres:///mydb",
        },
        "MIDDLEWARE": [
            "dramatiq.middleware.TimeLimit",
            "dramatiq.middleware.Callbacks",
            "dramatiq.middleware.Retries",
        ],
    }
    DRAMATIQ_REGISTRY = 'myapp.registry.tasks'
  5. Start the worker process:

    $ dramatiq django_dramatiq_pg.worker

This worker module will auto-discover any module called ‘actors’ in INSTALLED_APPS.

Registry

In a typical dramatiq application, the Broker is configured before any tasks are registered. However, as Django is in control of the intialisation sequence, there is an issue of ordering; the actor decorator assumes the broker is already configured.

To resolve this, django_dramatiq_pg provides a Registry for your tasks, which is then bound to the Broker when Django initialises.

In your code, declare a Registry instance, and use its .actor method to decorate your task functions. Then tell django_dramatiq_pg to use your registry with the DRAMATIQ_REGISTRY setting.

If you do not specify one, django_dramatiq_pg will create one on start.

The registry can be accessed as the .registry attribute on the django_dramatiq_pg App instance.

Settings

DRAMATIQ_BROKER

A dict of options to pass when instantiating the broker.

DRAMATIC_BROKER[‘OPTIONS’]

Arguments to pass to the Broker.

DRAMATIC_BROKER[‘MIDDLEWARE’]

A list of middleware classes to be passed to the broker.

These can either be import strings, or instances.

DRAMATIQ_ENCODER

Default: None

Import path for encoder class.

DRAMATIQ_ACTORS_MODULE

Default: ‘actors’

Name of module use to auto-discover actors in INSTALLED_APPS.

DRAMATIQ_REGISTRY

Import path for the task Registry instance.

This should refer to an instance of django_dramatiq_pg.registry.Registry.

This resolves the chicken/egg problem of declaring tasks before the broker is configured.

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

django-dramatiq-pg-1.3.2.tar.gz (7.2 kB view details)

Uploaded Source

Built Distribution

django_dramatiq_pg-1.3.2-py3-none-any.whl (7.5 kB view details)

Uploaded Python 3

File details

Details for the file django-dramatiq-pg-1.3.2.tar.gz.

File metadata

  • Download URL: django-dramatiq-pg-1.3.2.tar.gz
  • Upload date:
  • Size: 7.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.1.0 CPython/3.8.0 Darwin/19.6.0

File hashes

Hashes for django-dramatiq-pg-1.3.2.tar.gz
Algorithm Hash digest
SHA256 07f7f92928c70bb9a34d8d30efde8a319a2bdbb90d61f5993dce9c51b7b5b56e
MD5 8908a8d12af6c5f66219453bb806c576
BLAKE2b-256 e4ac894efbb51c852e330042f045af54fdf6122d5d4d8bd155f5085dcaf5d081

See more details on using hashes here.

File details

Details for the file django_dramatiq_pg-1.3.2-py3-none-any.whl.

File metadata

File hashes

Hashes for django_dramatiq_pg-1.3.2-py3-none-any.whl
Algorithm Hash digest
SHA256 f9cc3c48bc5ba18d6a1bc03fb5af44456349ba22b89df14f97e64ae0719dbb4e
MD5 c5323f1cc800f960f43071ea2e1c7f0e
BLAKE2b-256 3bfce5d33d10fcb275fce084d6d859aee1d202265d88052210b672c8ba86c655

See more details on using hashes here.

Supported by

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