I am using celery with the djkombu queue. I\'ve set max_retries=3 for my task. Once the 3rd retry fails, it开发者_运维知识库 executes the after_return method with status=FAILURE. The method also rece
I am starting a project using django celery and I am making ajax calls to the task urls provided by \'djcelery.urls\'.
I\'m trying to setup celery and django, but the celery_taskmeta table is not being created. I\'ve followed numerous (Recent) tutorials, added djcelery and djkombu to my installed_apps. added the \'BR
I am using Django with MongoEngine, django-celery and the MongoDB backend for celery. I am queuing one task. The task involves fetching a file from GridFS (through the MongoEngine FileField), manipula
I\'m currently working on a project using Django 1.3 with the Django-Celery app.It\'s pretty awesome, by the way, I suggest anyone who\'s not familiar with celery check it out.
I\'m using django-celery using the database as both broker and results store.The events are getting processed, but the monitoring (celerycam or celeryev) is not working.
I am following this tutorial http://celeryq.org/docs/django-celery/getting-started/first-steps-with-django.html
I ma starting celeryas python manage.py celeryd It is working but in foreground . Then to test commands i need to start another term开发者_如何学运维inal and do stuff there.
Currently i have one site on Django. But i am planning to run more Django sites. So i want to know that do i need to run celeryd for every new开发者_运维技巧 site or one is enough.
The celery docs says that However, in production you probably want to run the worker in the background as a daemon.