Skip to main content

Postgres Broker for Dramatiq Task Queue

Project description

dramatiq-pg − Postgres Broker for Dramatiq

Dramatiq is a simple task queue implementation for Python3. dramatiq-pg provides a Postgres-based implementation of a dramatiq broker.

Features

  • Super simple deployment: Single table, no ORM.
  • Stores message payload and results as native JSONb.
  • Uses LISTEN/NOTIFY to keep worker sync. No polling.
  • Implements delayed task.
  • Reliable thanks to Postgres MVCC.
  • Self-healing: automatic purge of old messages. Automatic recovery after crash.
  • Utility CLI for maintainance: flush, purge, stats, etc.

Note that dramatiq assumes tasks are idempotent. This broker makes the same assumptions for recovering after a crash.

Installation

  • Install dramatiq-pg package from PyPI:
    $ pip install dramatiq-pg psycopg2-binary
    
    Ensure you have either psycopg2 or psycopg2-binary installed.
  • Apply dramatiq_pg/schema.sql file in your database:
    $ psql -f dramatiq_pg/schema.sql
    
  • Before importing actors, define global broker with a connection pool:
    import dramatiq
    import psycopg2.pool
    from dramatiq_pg import PostgresBroker
    
    dramatiq.set_broker(PostgresBroker(i))
    
    @dramatiq.actor
    def myactor():
        ...
    

Now declare/import actors and manage worker just like any dramatiq setup. An example script is available, tested on CI.

The CLI tool dramatiq-pg allows you to requeue messages, purge old messages and show stats on the queue. See --help for details.

Dramatiq-pg documentation is hosted on GitLab and give you more details on deployment and operation of Postgres as a Dramatiq broker.

Support

If you encounter a bug or miss a feature, please open an issue on GitLab with as much information as possible.

dramatiq_pg is available under the PostgreSQL licence.

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

dramatiq-pg-0.8.0.tar.gz (10.7 kB view details)

Uploaded Source

Built Distribution

dramatiq_pg-0.8.0-py3-none-any.whl (11.8 kB view details)

Uploaded Python 3

File details

Details for the file dramatiq-pg-0.8.0.tar.gz.

File metadata

  • Download URL: dramatiq-pg-0.8.0.tar.gz
  • Upload date:
  • Size: 10.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.0.5 CPython/3.6.8 Linux/4.19.0-6-amd64

File hashes

Hashes for dramatiq-pg-0.8.0.tar.gz
Algorithm Hash digest
SHA256 55afe355ce34f476b6b55c7590a7c9861832b583b4db65879d17be443dd27eba
MD5 5e92f727e18c94b2f5f83a6f7f8df998
BLAKE2b-256 dd88f83eca4816bfe4030d4c5d037ae21aed63486cc67109d8f1bb7ac431e2dd

See more details on using hashes here.

Provenance

File details

Details for the file dramatiq_pg-0.8.0-py3-none-any.whl.

File metadata

  • Download URL: dramatiq_pg-0.8.0-py3-none-any.whl
  • Upload date:
  • Size: 11.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.0.5 CPython/3.6.8 Linux/4.19.0-6-amd64

File hashes

Hashes for dramatiq_pg-0.8.0-py3-none-any.whl
Algorithm Hash digest
SHA256 fc370ba9e7458e7555d76818d22713f1978da715a64f071735c3aa473283aa74
MD5 f5cf605982de8278b4fba26617e2ab39
BLAKE2b-256 90469eae5fc4b30c688a0a6c525a15b5ae0b5111f124818b01abd3b01b9827ee

See more details on using hashes here.

Provenance

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