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.
The project is not feature complete yet.
Features
- Super simple deployment.
- Uses plain psycopg2. No ORM.
- Stores message payload as native JSONb.
- Stores all messages in a single table, in a dedicated schema.
- Uses LISTEN/NOTIFY to keep worker sync. No polling.
- Replay pending messages on worker startup.
- Requeues failed tasks.
- Delayed task.
- Reliable thanks to Postgres MVCC.
- Self-healing. Old messages are purge from time to time.
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
- 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(url="postgresql:///?minconn=0&maxconn=10")) @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.
Deployment
Postgres does not replicate notifications to standby instances. Thus the broker connection pool must point to the master instance. Actor can connect to hot standby for its work.
If you use pgbouncer, you must configure session pooling method to keep notify.
Each dramatiq process opens one persistent connection per queue and one
connection to ack messages. Thus, to be save, you should provision pool size
with num_processes x num_queues x 2
. A best practice is to only add process as
needed and reduce the number of queues.
Roadmap
- Result storage as JSONb.
Feel free to suggest feature through support channels.
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
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file dramatiq-pg-0.4.0.tar.gz
.
File metadata
- Download URL: dramatiq-pg-0.4.0.tar.gz
- Upload date:
- Size: 7.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/0.12.10 CPython/3.7.1 Linux/4.19.0-2-amd64
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 33df173355ed6863a19d49556b146f3fc8fe376bd179ddb92db367dd26f91f0c |
|
MD5 | e0bfe3c12b1ecca903f084d436085099 |
|
BLAKE2b-256 | 51cdc8a24c19fc4ff4519bba4eb085de92ce2b05ce5fd61a132dccac17f3bf2b |
Provenance
File details
Details for the file dramatiq_pg-0.4.0-py3-none-any.whl
.
File metadata
- Download URL: dramatiq_pg-0.4.0-py3-none-any.whl
- Upload date:
- Size: 18.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/0.12.10 CPython/3.7.1 Linux/4.19.0-2-amd64
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | cf111dcef7ed0cd37513880d8426d8cc870eca93bee5c6ec94cf0aa486e34e68 |
|
MD5 | f50c290d56abf9847d578f0c8485f664 |
|
BLAKE2b-256 | 215ba1f3e732f71d587fabcbe29cf85f206b879ddfbd1875ee7bcce0d31696d0 |