Tagged Questions
0
votes
0answers
28 views
Django Celery Custom Periodic Task Not Executing
I tried using this code to try to dynamically add / remove scheduled tasks.
My tasks.py file looks like this:
from celery.decorators import task
import logging
log = logging.getLogger(__name__)
...
0
votes
0answers
49 views
Celery task id in task_revoked handler
So I have a task that creates a work directory and does all its work there.
The task is called from server A and executed on worker servers.
I need to make sure the work directory is deleted once the ...
0
votes
0answers
52 views
DJANGO CELERY workers stop taking requests after few hours
I'm wondering if someone can help me with a problem running Django, NGINX and Celery to process high volumes of webpage screenshots using cutycapt and xvfb (on the worker threads). My worker threads ...
1
vote
0answers
53 views
NotRegistered with djcelery + Heroku
I've been stuck on this one for the last 6 hours or so. So any help would be greatly appreciated.
I am using djcelery on a Django app which is deployed on Heroku. Said app has a periodic task that ...
3
votes
2answers
282 views
Unusual warning with djcelery, billiard, and the django_settings_module
When running manage.py celeryd for async processes, everything works as expected but i'm getting a weird warning at every start-up. It's not causing any errors, but i'm having trouble making it ...
2
votes
1answer
123 views
Celery versus djcelery
I am confused between the differences between these two applications while trying to setup celery on my django project.
What are the differences between the two if any? When reading tutorials online ...
0
votes
1answer
689 views
In celery how to get task position in queue?
I'm using Celery with Redis as broker and I can see that the queue is actually a redis list with the serialized task as the items.
My question is, if I have an AsyncResult object as a result of ...