Django-celery provides Celery integration for Django.
I am trying to use django-celery in my project In settings.py I have CELERY_RESULT_BACKEND = "amqp" The server …
django django-celeryWhen I have something like the following group1 = group(task1.si(), task1.si(), task1.si()) group2 = group(task2.si(), task2.…
python celery django-celeryI'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-celeryI could make celery reload itself automatically when there is changes on modules in CELERY_IMPORTS in settings.py. I …
python celery django-celeryI have setup Celery in a Django project on which I am working. I would like to separate the logging …
python django logging celery django-celeryI want to have a task that will execute every 5 minutes, but it will wait for last execution to finish …
rabbitmq celery django-celeryI'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-celeryHow 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 celerybeatAccording to the celery tutorial regarding real-time monitoring of celery workers, one can also programmatically capture the events produced by …
python monitor django-celeryi need to download a file through ftp, change it and upload it back. I am using celery to do …
python django celery django-celery