django-celery
Can I restart a FAILED celery task?
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[详细]
2023-03-27 02:53 分类:问答Where is the data provided by django-celery urls stored? How long is the data available? And what is the memory consumption?
I am starting a project using django celery and I am making ajax calls to the task urls provided by \'djcelery.urls\'.[详细]
2023-03-26 13:51 分类:问答Why are celery_taskmeta and other tables not being created when running a syncdb in django?
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[详细]
2023-03-25 23:43 分类:问答Celery task seems to do everything except write to the database
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[详细]
2023-03-22 06:26 分类:问答Django-Celery - Resubmit tasks from admin page?
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.[详细]
2023-03-22 03:24 分类:问答Celery monitoring not working with database broker
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.[详细]
2023-03-20 16:39 分类:问答Sample example from django-celery not working in Django app
I am following this tutorial http://celeryq.org/docs/django-celery/getting-started/first-steps-with-django.html[详细]
2023-03-19 23:13 分类:问答How to start celery in background of terminal in Django
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.[详细]
2023-03-19 22:59 分类:问答DO i need to execute separate celeryd if i run multiple sites in Django
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.[详细]
2023-03-19 20:34 分类:问答Celery daemon script not going in background with init script
The celery docs says that However, in production you probably want to run the worker in the background as a daemon.[详细]
2023-03-19 14:14 分类:问答