Top "Django-celery" questions

Django-celery provides Celery integration for Django.

Celery (Redis) results backend not working

I have a web application using Django and i am using Celery for some asynchronous tasks processing. For Celery, i …

python django redis celery django-celery
Consumer Connection error with django and celery+rabbitmq?

I'm trying to set up celeryd with django and rabbit-mq. So far, I've done the following: Installed celery from pip …

python django rabbitmq celery django-celery
Why would running scheduled tasks with Celery be preferable over crontab?

Considering Celery is already a part of the stack to run task queues (i.e. it is not being added …

python django celery django-celery
Celery - No module named five

After updating celery and django-celery to 3.1: $ pip freeze | grep celery celery==3.1.18 django-celery==3.1.16 I run into this error when starting my …

python django python-2.7 celery django-celery
How to run a celery worker with Django app scalable by AWS Elastic Beanstalk?

How to use Django with AWS Elastic Beanstalk that would also run tasks by celery on main node only?

django amazon-web-services celery amazon-elastic-beanstalk django-celery
Background processing in Django without Celery

I have a very small part of a Django site that keeps the state of a moderated chat session between …

python ajax django asynchronous django-celery
ImportError: No module named timeutils

I trying to follow tutorial install of django-celery. After install i need run migrate to make the necessary tables but …

python django celery django-celery
Recover from task failed beyond max_retries

I am attempting to asynchronously consume a web service because it takes up to 45 seconds to return. Unfortunately, this web …

django celery django-celery
Django & Celery — Routing problems

I'm using Django and Celery and I'm trying to setup routing to multiple queues. When I specify a task's routing_…

django celery django-celery kombu
Some Celery tasks work, others are NotRegistered

I follow the Celery Django tutorial and the tasks I see in the example (add, mul) work for me perfectly. …

python django celery django-celery