Dramatiq is a distributed task processing library for Python 3.
Questions tagged [dramatiq]
34 questions
0
votes
0 answers
running background tasks through dramatic does not work
I'm trying to run background task processing, redis and rabbitMQ work in separate docker containers
@dramatiq.actor(store_results=True)
def count_words(url):
try:
response = requests.get(url)
count =…

Максим
- 1
- 1
0
votes
0 answers
Flask-Dramatiq-Callback must be an Actor
When working with dramatiq 1.9.0 (flask-dramatiq 0.6.0) I'm unable to call on_success- or on_failure-callbacks. The official dramatiq-documentation states callbacks can be used like this:
@dramatiq.actor
def taskFailed(message_data,…

Kruspe
- 626
- 6
- 19
0
votes
1 answer
Fair scheduling of task execution time between web service users
Suppose we have the following web service. The main function is doing screenshots for the given website URL. There is REST API and user interface for entering URLs. For each new URL is a task in Celery is created. For frontend UI is important that…

uhbif19
- 3,139
- 3
- 26
- 48
0
votes
1 answer
Celery with (bind=True) in dask or dramatiq?
I have been using celery for a while but am looking for an alternative due to the lack of windows support.
The top competitors seem to be dask and dramatiq. What I'm really looking for is for something that can distribute 1000 long running tasks…

Nickpick
- 6,163
- 16
- 65
- 116