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.
  • Uses plain psycopg2. No ORM.
  • Stores message payload and results as native JSONb.
  • Stores all messages in a single table, in a dedicated schema.
  • Uses LISTEN/NOTIFY to keep worker sync. No polling.
  • Requeue of failed tasks.
  • Delayed task.
  • Reliable thanks to Postgres MVCC.
  • Self-healing. Old messages are purge from time to time.
  • 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.6.0.tar.gz (9.2 kB view details)

Uploaded Source

Built Distribution

dramatiq_pg-0.6.0-py3-none-any.whl (10.4 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: dramatiq-pg-0.6.0.tar.gz
  • Upload date:
  • Size: 9.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.0.0a3 CPython/3.7.1 Linux/4.19.0-5-amd64

File hashes

Hashes for dramatiq-pg-0.6.0.tar.gz
Algorithm Hash digest
SHA256 d4dab44934749c5595e43b4be824d1e006b2e8a152789104a4e3024840adcfea
MD5 44006c2f1a59a49cd14673477a0d303d
BLAKE2b-256 64aeb9cbd4e0e5001ab9e012eafe9b6f6d6e8fb7f08179c5adf03eb2ae66c497

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: dramatiq_pg-0.6.0-py3-none-any.whl
  • Upload date:
  • Size: 10.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.0.0a3 CPython/3.7.1 Linux/4.19.0-5-amd64

File hashes

Hashes for dramatiq_pg-0.6.0-py3-none-any.whl
Algorithm Hash digest
SHA256 b481f0be14fd0f9ceff229484d390e177725dc47ba02fe95d540ec2f57bcebf7
MD5 da76babcb893f7a002aa066b66771e75
BLAKE2b-256 23292ddef79a428bffd4cc7e79a6d1320af54326d89be2fd44864c81b26b0731

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