dramatiq_sqs icon indicating copy to clipboard operation
dramatiq_sqs copied to clipboard

A Dramatiq broker that can be used with Amazon SQS.

Results 10 dramatiq_sqs issues
Sort by recently updated
recently updated
newest added

@Bogdanp I've created an actor like this. ```python @dramatiq.actor( max_retries=10, min_backoff=(1 * MINUTES), max_backoff=(10 * MINUTES), throws=(FooBar, BarFoo), queue_name="my_queue", ) def process_finish(reseller_id: str): ... ``` I have an error in...

I noticed in https://github.com/Bogdanp/dramatiq/blob/master/docs/source/troubleshooting.rst it says: > Dramatiq operations on builtin brokers are thread-safe however the broker in this repo is not built-in and I can't see any mention of...

There are situations in which clients are limited in the rights to create queues, i.e. queues are created manually on the DevOps side, and clients are given only read-write permissions...

@Bogdanp thank you for creating dramatiq! and specially this add-on. I have a couple of questions: 1. Does this support queue priority? (Even if I have to create N SQS...

Configure CI with tests and lint. Closes #8

#6 @Bogdanp I started the development. Feel free to edit this PR or give me some feedbacks.

@Bogdanp I see you initially skipped implementation of re-queue to use SQS visibility timeout which sounds like a good idea but you later implemented the re-queue logic. Just want to...

# Motivation: In some environments creating new queues might be restricted, even though queue exists. # Issue: The current implementation will declare a queue if it does not yet exist...

It would be nice to have one off this CI tools configured. - Github Actions - Travis - Circle CI

enhancement

@Bogdanp is there on the roadmap to support fifo queues?

enhancement