dramatiq icon indicating copy to clipboard operation
dramatiq copied to clipboard

A fast and reliable background task processing library for Python 3.

Results 92 dramatiq issues
Sort by recently updated
recently updated
newest added

# Issues GitHub issues are for bugs. If you have questions, please ask them on the [discussion board](https://reddit.com/r/dramatiq). ## Checklist * [x] Does your title concisely summarize the problem? *...

## What OS are you using? Ubuntu 22.04 ## What version of Dramatiq are you using? 1.15.0 ## What did you do? Processing parallel async messages using Dramatiq ## What...

# Issues GitHub issues are for bugs. If you have questions, please ask them on the [mailing list](https://groups.io/g/dramatiq-users/topics). ## Checklist * [x] Does your title concisely summarize the problem? *...

Need add full examples and info about ASYNCIO in dramatiq

help wanted
beginner friendly

Mark message as `failed` when actor raises an Exception. On `self.consumers[message.queue_name].post_process_message(message)` the method `nack` will be called. This change will enable refactor on `dramatiq_sqs` to skip message delete and redrive...

## What OS are you using? OS not related ## What version of Dramatiq are you using? 1.14.1 ## What did you do? I used example from https://dramatiq.io/cookbook.html#scheduling-messages: ``` import...

# Issues GitHub issues are for bugs. If you have questions, please ask them on the [mailing list](https://groups.io/g/dramatiq-users/topics). ## Checklist * [x] Does your title concisely summarize the problem? *...

Your code use sync pika. Does it make sense to use aio-pika https://github.com/mosquito/aio-pika ?

# Situation The default behavior of Dramatiq when multiple queues are present (either all of them or a subset), is to fetch data from them using the consumer threads. This...

The declared rabbitmq queue will be missing sometime, such as deletion by mistake or rabbitmq server failure. So I add some logic to make sure the missing queue to be...