RabbitMQ broker for taskiq
Project description
AioPika broker for taskiq
This lirary provides you with aio-pika broker for taskiq.
Usage:
from taskiq_aio_pika import AioPikaBroker
broker = AioPikaBroker()
@broker.task
async def test() -> None:
print("nothing")
Non-obvious things
You can send delayed messages and set priorities to messages using labels.
Delays
Default retries
To send delayed message, you have to specify
delay label. You can do it with task
decorator,
or by using kicker.
In this type of delay we are using additional queue with expiration
parameter and after with time message will be deleted from delay
queue and sent to the main taskiq queue.
For example:
broker = AioPikaBroker()
@broker.task(delay=3)
async def delayed_task() -> int:
return 1
async def main():
await broker.startup()
# This message will be received by workers
# After 3 seconds delay.
await delayed_task.kiq()
# This message is going to be received after the delay in 4 seconds.
# Since we overriden the `delay` label using kicker.
await delayed_task.kicker().with_labels(delay=4).kiq()
# This message is going to be send immediately. Since we deleted the label.
await delayed_task.kicker().with_labels(delay=None).kiq()
# Of course the delay is managed by rabbitmq, so you don't
# have to wait delay period before message is going to be sent.
Retries with rabbitmq-delayed-message-exchange
plugin
To send delayed message you can install rabbitmq-delayed-message-exchange
plugin https://github.com/rabbitmq/rabbitmq-delayed-message-exchange.
And you need to configure you broker.
There is delayed_message_exchange_plugin
AioPikaBroker
parameter and it must be True
to turn on delayed message functionality.
The delay plugin can handle tasks with different delay times well, and the delay based on dead letter queue is suitable for tasks with the same delay time.
For example:
broker = AioPikaBroker(
delayed_message_exchange_plugin=True,
)
@broker.task(delay=3)
async def delayed_task() -> int:
return 1
async def main():
await broker.startup()
# This message will be received by workers
# After 3 seconds delay.
await delayed_task.kiq()
# This message is going to be received after the delay in 4 seconds.
# Since we overriden the `delay` label using kicker.
await delayed_task.kicker().with_labels(delay=4).kiq()
Priorities
You can define priorities for messages using priority
label.
Messages with higher priorities are delivered faster.
But to use priorities you need to define max_priority
of the main queue, by passing max_priority
parameter in broker's init.
This parameter sets maximum priority for the queue and
declares it as the prority queue.
Before doing so please read the documentation about what downsides you get by using prioritized queues.
broker = AioPikaBroker(max_priority=10)
# We can define default priority for tasks.
@broker.task(priority=2)
async def prio_task() -> int:
return 1
async def main():
await broker.startup()
# This message has priority = 2.
await prio_task.kiq()
# This message is going to have priority 4.
await prio_task.kicker().with_labels(priority=4).kiq()
# This message is going to have priority 0.
await prio_task.kicker().with_labels(priority=None).kiq()
Configuration
AioPikaBroker parameters:
url
- url to rabbitmq. If None, "amqp://guest:guest@localhost:5672" is used.result_backend
- custom result backend.task_id_generator
- custom task_id genertaor.exchange_name
- name of exchange that used to send messages.exchange_type
- type of the exchange. Used only ifdeclare_exchange
is True.queue_name
- queue that used to get incoming messages.routing_key
- that used to bind that queue to the exchange.declare_exchange
- whether you want to declare new exchange if it doesn't exist.max_priority
- maximum priority for messages.delay_queue_name
- custom delay queue name. This queue is used to deliver messages with delays.dead_letter_queue_name
- custom dead letter queue name. This queue is used to receive negatively acknowleged messages from the main queue.qos
- number of messages that worker can prefetch.declare_queues
- whether you want to declare queues even on client side. May be useful for message persistance.
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 taskiq_aio_pika-0.3.0.tar.gz
.
File metadata
- Download URL: taskiq_aio_pika-0.3.0.tar.gz
- Upload date:
- Size: 5.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.5.0 CPython/3.10.6 Linux/5.15.0-1037-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fbb779a877d87b4cd090986bc98a60c2bb58de496e0680db60fccf51ec419cf7 |
|
MD5 | e8011e395330d786c37ed3b43893ddee |
|
BLAKE2b-256 | 65e20ffbe16bc29a501120d649bbe71732193af80b8d8303d43eca3114d16e68 |
File details
Details for the file taskiq_aio_pika-0.3.0-py3-none-any.whl
.
File metadata
- Download URL: taskiq_aio_pika-0.3.0-py3-none-any.whl
- Upload date:
- Size: 5.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.5.0 CPython/3.10.6 Linux/5.15.0-1037-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6d69958c542f3e76247de7c65787ad57c6f755398dbdf1c821cc6ed407161476 |
|
MD5 | f263f3b427c3dfbc4b30a204cd82591b |
|
BLAKE2b-256 | 49e5864bb45ad0b833a8372cea45c748e6508147398050ec71fcaa36b79d7b37 |