Postgres Broker for Dramatiq Task Queue
Project description
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. - Init database schema with
init
command.$ dramatiq-pg init
Or adaptdramatiq-pg/schema.sql
to your needs. - 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.
Integration
Django : Use django-dramatiq-pg by Curtis Maloney. It includes configuration, ORM model and database migration.
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.
Credit
Thanks to all contributors :
- Andy Freeland
- Curtis Maloney, Django support.
- Federico Caselli, bugfixes.
- Giuseppe Papallo, bugfixes.
- Rafal Kwasny, improvements.
The logo is a creation of Damien CAZEILS
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.9.0.tar.gz
.
File metadata
- Download URL: dramatiq-pg-0.9.0.tar.gz
- Upload date:
- Size: 11.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.0 CPython/3.6.8 Linux/4.19.0-11-amd64
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6ec05eeffcaf7b6ae81fecbd2edbedc9f22a72523bce3fbcdee871f1029cdaf6 |
|
MD5 | 5add5d53f2bbe8edcc44f2558fc79c30 |
|
BLAKE2b-256 | 291f6203a15bfe27a80e2df8a685bc2d095eecd4a224d9bfff4268c816633a10 |
Provenance
File details
Details for the file dramatiq_pg-0.9.0-py3-none-any.whl
.
File metadata
- Download URL: dramatiq_pg-0.9.0-py3-none-any.whl
- Upload date:
- Size: 12.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.0 CPython/3.6.8 Linux/4.19.0-11-amd64
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 462fb2230bcd73c0f58eb0fff10cf360f34dd4d0837f8e370a5c9f6faea2e3aa |
|
MD5 | a4f5763e92246e1f5cd0a69a868b0aa4 |
|
BLAKE2b-256 | 827b19accf8bf1e06a510c86a43c791873df8bb862275369b0cb429aa22d9bd2 |