Top "Django-celery" questions

Django-celery provides Celery integration for Django.

django-celery: No result backend configured

I am trying to use django-celery in my project In settings.py I have CELERY_RESULT_BACKEND = "amqp" The server …

django django-celery
celery - chaining groups and subtasks. -> out of order execution

When I have something like the following group1 = group(task1.si(), task1.si(), task1.si()) group2 = group(task2.si(), task2.…

python celery django-celery
celery task and customize decorator

I'm working on a project using django and celery(django-celery). Our team decided to wrap all data access code within (…

python django decorator celery django-celery
Celery auto reload on ANY changes

I could make celery reload itself automatically when there is changes on modules in CELERY_IMPORTS in settings.py. I …

python celery django-celery
Django Celery Task Logging

I have setup Celery in a Django project on which I am working. I would like to separate the logging …

python django logging celery django-celery
Celery task schedule (Celery, Django and RabbitMQ)

I want to have a task that will execute every 5 minutes, but it will wait for last execution to finish …

rabbitmq celery django-celery
Retrying tasks with Django-Celery - Django/Celery

I'm having problems retrying tasks, here is what a test task looks like from celery.decorators import task @task() def …

python django scheduled-tasks celery django-celery
Celerybeat not executing periodic tasks

How do you diagnose why manage.py celerybeat won't execute any tasks? I'm running celerybeat via supervisord with the command: /…

python django django-celery celerybeat
How to monitor events from workers in a Celery-Django application?

According to the celery tutorial regarding real-time monitoring of celery workers, one can also programmatically capture the events produced by …

python monitor django-celery
Celery chaining tasks sequentially

i need to download a file through ftp, change it and upload it back. I am using celery to do …

python django celery django-celery