BeanQueue or BQ for short, PostgreSQL SKIP LOCK and SQLAlchemy based worker queue library
Project description
BeanQueue
BeanQueue, a lightweight Python task queue framework based on SQLAlchemy, PostgreSQL SKIP LOCKED queries and NOTIFY / LISTEN statements.
Notice: Still in its early stage, we built this for BeanHub's internal usage. May change rapidly. Use at your own risk for now.
Features
- Super lightweight: Under 1K lines
- Easy-to-deploy: Only rely on PostgreSQL
- Easy-to-use: Provide command line tools for processing tasks, also helpers for generating tasks models
- Auto-notify: Notify will automatically be generated and send for inserted or update tasks
- Retry: Built-in and customizable retry-policies
- Schedule: Schedule task to run later
- Worker heartbeat and auto-reschedule: Each worker keeps updating heartbeat, if one is found dead, the others will reschedule the tasks
- Customizable: Use it as an library and build your own work queue
- Native DB operations: Commit your tasks with other db entries altogether without worrying about data inconsistent issue
Install
pip install beanqueue
Usage
You can define a task processor like this
from sqlalchemy.orm import Session
import bq
from .. import models
from .. import image_utils
app = bq.BeanQueue()
@app.processor(channel="images")
def resize_image(db: Session, task: bq.Task, width: int, height: int):
image = db.query(models.Image).filter(models.Image.task == task).one()
image_utils.resize(image, size=(width, height))
db.add(image)
# by default the `processor` decorator has `auto_complete` flag turns on,
# so it will commit the db changes for us automatically
The db
and task
keyword arguments are optional.
If you don't need to access the task object, you can simply define the function without these two parameters.
We also provide an optional savepoint
argument in case if you want to rollback database changes you made.
To submit a task, you can either use bq.Task
model object to construct the task object, insert into the
database session and commit.
import bq
from .db import Session
from .. import models
db = Session()
task = bq.Task(
channel="files",
module="my_pkgs.files.processors",
name="upload_to_s3_for_backup",
)
file = models.File(
task=task,
blob_name="...",
)
db.add(task)
db.add(file)
db.commit()
Or, you can use the run
helper like this:
from .processors import resize_image
from .db import Session
from .. import my_models
db = Session()
# a Task model generated for invoking resize_image function
task = resize_image.run(width=200, height=300)
# associate task with your own models
image = my_models.Image(task=task, blob_name="...")
db.add(image)
# we have Task model SQLALchemy event handler to send NOTIFY "<channel>" statement for you,
# so that the workers will be woken up immediately
db.add(task)
# commit will make the task visible to worker immediately
db.commit()
To run the worker, you can do this:
BQ_PROCESSOR_PACKAGES='["my_pkgs.processors"]' bq process images
The BQ_PROCESSOR_PACKAGES
is a JSON list contains the Python packages where you define your processors (the functions you decorated with bq.processors.registry.processor
).
To submit a task for testing purpose, you can do
bq submit images my_pkgs.processors resize_image -k '{"width": 200, "height": 300}'
To create tables for BeanQueue, you can run
bq create_tables
Schedule
In most cases, a task will be executed as soon as possible after it is created.
To run a task later, you can set a datetime value to the scheduled_at
attribute of the task model.
For example:
import datetime
db = Session()
task = resize_image.run(width=200, height=300)
task.scheduled_at = func.now() + datetime.timedelta(minutes=3)
db.add(task)
Please note that currently, workers won't wake up at the next exact moment when the scheduled tasks are ready to run.
It has to wait until the polling times out, and eventually, it will see the task's scheduled_at time exceeds the current datetime.
Therefore, depending on your POLL_TIMEOUT
setting and the number of your workers when they started processing, the actual execution may be inaccurate.
If you set the POLL_TIMEOUT
to 60 seconds, please expect less than 60 seconds of delay.
Retry
To automatically retry a task after failure, you can specify a retry policy to the processor.
import datetime
import bq
from sqlalchemy.orm import Session
app = bq.BeanQueue()
delay_retry = bq.DelayRetry(delay=datetime.timedelta(seconds=120))
@app.processor(channel="images", retry_policy=delay_retry)
def resize_image(db: Session, task: bq.Task, width: int, height: int):
# resize iamge here ...
pass
Currently, we provide some simple common retry policies such as DelayRetry
and ExponentialBackoffRetry
.
Surely, you can define your retry policy easily by making a function that returns an optional object at the next scheduled time for retry.
def my_retry_policy(task: bq.Task) -> typing.Any:
# calculate delay based on task model ...
return func.now() + datetime.timedelta(seconds=delay)
To cap how many attempts is allowed, you can also use LimitAttempt
like this:
delay_retry = bq.DelayRetry(delay=datetime.timedelta(seconds=120))
capped_delay_retry = bq.LimitAttempt(3, delay_retry)
@app.processor(channel="images", retry_policy=capped_delay_retry)
def resize_image(db: Session, task: bq.Task, width: int, height: int):
# resize iamge here ...
pass
You can also retry only for specific exception classes with the retry_exceptions
argument.
@app.processor(
channel="images",
retry_policy=delay_retry,
retry_exceptions=ValueError,
)
def resize_image(db: Session, task: bq.Task, width: int, height: int):
# resize iamge here ...
pass
Configurations
Configurations can be modified by setting environment variables with BQ_
prefix.
For example, to set the python packages to scan for processors, you can set BQ_PROCESSOR_PACKAGES
.
To change the PostgreSQL database to connect to, you can set BQ_DATABASE_URL
.
The complete definition of configurations can be found at the bq/config.py module.
If you want to configure BeanQueue programmatically, you can pass in Config
object to the bq.BeanQueue
object when creating.
For example:
import bq
from .my_config import config
container = bq.Container()
container.wire(packages=[bq])
config = bq.Config(
PROCESSOR_PACKAGES=["my_pkgs.processors"],
DATABASE_URL=config.DATABASE_URL,
BATCH_SIZE=10,
)
app = bq.BeanQueue(config=config)
Then you can pass --app
argument (or -a
for short) pointing to the app object to the process command like this:
bq -a my_pkgs.bq.app process images
Or if you prefer to define your own process command, you can also call process_tasks
of the BeanQueue
object directly like this:
app.process_tasks(channels=("images",))
Define your own tables
BeanQueue is designed to be as customizable as much as possible. Of course, you can define your own SQLAlchemy model instead of using the ones we provided.
To make defining your own Task
, Worker
or Event
model much easier, you can use our mixin classes:
bq.TaskModelMixin
: provides task model columnsbq.TaskModelRefWorkerMixin
: provides foreign key column and relationship tobq.Worker
bq.TaskModelRefParentMixin
: provides foreign key column and relationship to childrenbq.Task
created during processingbq.TaskModelRefEventMixin
: provides foreign key column and relationship tobq.Event
bq.WorkerModelMixin
: provides worker model columnsbq.WorkerRefMixin
: provides relationship tobq.Task
bq.EventModelMixin
: provides event model columnsbq.EventModelRefTaskMixin
: provides foreign key column and relationship tobq.Task
Here's an example for defining your own Task model:
import uuid
import bq
from sqlalchemy import ForeignKey
from sqlalchemy.dialects.postgresql import UUID
from sqlalchemy.orm import Mapped
from sqlalchemy.orm import mapped_column
from sqlalchemy.orm import relationship
from .base_class import Base
class Task(bq.TaskModelMixin, Base):
__tablename__ = "task"
worker_id: Mapped[uuid.UUID] = mapped_column(
UUID(as_uuid=True),
ForeignKey("worker.id", onupdate="CASCADE"),
nullable=True,
index=True,
)
worker: Mapped["Worker"] = relationship(
"Worker", back_populates="tasks", uselist=False
)
To make task insert and update with state changing to PENDING
send out NOTIFY "channel" statement automatically, you can also use bq.models.task.listen_events
helper to register our SQLAlchemy event handlers automatically like this
from bq.models.task import listen_events
listen_events(Task)
You just see how easy it is to define your Task model. Now, here's an example for defining your own Worker model:
import bq
from sqlalchemy.orm import Mapped
from sqlalchemy.orm import relationship
from .base_class import Base
class Worker(bq.WorkerModelMixin, Base):
__tablename__ = "worker"
tasks: Mapped[list["Task"]] = relationship(
"Task",
back_populates="worker",
cascade="all,delete",
order_by="Task.created_at",
)
With the model class ready, you only need to change the TASK_MODEL
, WORKER_MODEL
and EVENT_MODEL
of Config
to the full Python module name plus the class name like this.
import bq
config = bq.Config(
TASK_MODEL="my_pkgs.models.Task",
WORKER_MODEL="my_pkgs.models.Worker",
EVENT_MODEL="my_pkgs.models.Event",
# ... other configs
)
app = bq.BeanQueue(config)
Why?
There are countless work queue projects. Why make yet another one? The primary issue with most work queue tools is their reliance on a standalone broker server. Our work queue tasks frequently interact with the database, and the atomic nature of database transactions is great for data integrity. However, integrating an external work queue into the system presents a risk. The work queue and the database don't share the same data view, potentially compromising data integrity and reliability.
For example, you have a table of images
to keep the user-uploaded images.
And you have a background work queue for resizing the uploaded images into different thumbnail sizes.
So, you will first need to insert a row for the uploaded image about the job into the database before you push the task to the work queue.
Say you push the task to the work queue immediately after you insert the images
table then commit like this:
1. Insert into the "images" table
2. Push resizing task to the work queue
3. Commit db changes
While this might seem like the right way to do it, there's a hidden bug.
If the worker starts too fast before the transaction commits at step 3, it will not be able to see the new row in images
as it has not been committed yet.
One may need to make the task retry a few times to ensure that even if the first attempt failed, it could see the image row in the following attempt.
But this adds complexity to the system and also increases the latency if the first attempt fails.
Also, if the commit step fails, you will have a failed work queue job trying to fetch a row from the database that will never exist.
Another approach is to push the resize task after the database changes are committed. It works like this:
1. Insert into the "images" table
2. Commit db changes
3. Push resizing task to the work queue
With this approach, we don't need to worry about workers picking up the task too early.
However, there's another drawback.
If step 3 for pushing a new task to the work queue fails, the newly inserted images
row will never be processed.
There are many solutions to this problem, but these are all caused by inconsistent data views between the database and the work queue storage.
Things will be much easier if we have a work queue that shares the same consistent view with the database.
By using a database as the data storage, all the problems are gone. You can simply do the following:
1. Insert into the "images" table
2. Insert the image resizing task into the `tasks` table
3. Commit db changes
It's all or nothing! By doing so, you don't need to maintain another work queue backend. You are probably using a database anyway, so this work queue comes for free.
Usually, a database is inefficient as the work queues data storage because of the potential lock contention and the need for constant querying. However, things have changed since the introduction of the SKIP LOCKED and LISTEN / NOTIFY features in PostgreSQL or other databases.
This project is inspired by many of the SKIP-LOCKED-based work queue successors. Why don't we just use those existing tools? Well, because while they work great as work queue solutions, they don't take advantage of writing tasks and their relative data into the database in a transaction. Many provide an abstraction function or gRPC method of pushing tasks into the database instead of opening it up for the user to insert the row directly with other rows and commit altogether.
With BeanQueue, we don't abstract away the logic of publishing a new task into the queue. Instead, we open it up to let the user insert the row and choose when and what to commit to the task.
Sponsor
A modern accounting book service based on the most popular open source version control system Git and text-based double entry accounting book software Beancount.
Alternatives
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 beanqueue-1.1.4.tar.gz
.
File metadata
- Download URL: beanqueue-1.1.4.tar.gz
- Upload date:
- Size: 24.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.2 CPython/3.11.9 Linux/5.15.0-1057-aws
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9ff2d2034f5d5701c356e953a8a31fe7519309bedd09a911c7518a881403528e |
|
MD5 | 7ed6803b226076fe4ef0f94aa4ab3bee |
|
BLAKE2b-256 | 912b3941a27c550323464467bec76276c2737e79719a63c8e1f39429db46278e |
File details
Details for the file beanqueue-1.1.4-py3-none-any.whl
.
File metadata
- Download URL: beanqueue-1.1.4-py3-none-any.whl
- Upload date:
- Size: 27.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.2 CPython/3.11.9 Linux/5.15.0-1057-aws
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e45d9da812920455875c70a000f642816dd3ef6bb6f0feee58fbf03f0076a05c |
|
MD5 | bda8d6762010917431c1c29db0fa608f |
|
BLAKE2b-256 | 992959afe529e6a2ca735b6d3794b68404f0ab08891c9777a77c3cab5ef8f5b1 |