Top "Celery" questions

Celery is a distributed task queue framework for Python, used for asynchronous and parallel execution.

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
How do you run a worker with AWS Elastic Beanstalk?

I am launching a django application on aws elastic beanstalk. I'd like to run background task or worker in order …

django amazon-web-services celery amazon-elastic-beanstalk
AMQP vs Websphere MQ

We're working on an application that supports AMQP for queuing. Some of our clients are using Websphere MQ. I'm just …

messaging rabbitmq amqp ibm-mq celery
Check if celery beat is up and running

In my Django project, I use Celery and Rabbitmq to run tasks in background. I am using celery beat scheduler …

django celery celerybeat
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
Why do CELERY_ROUTES have both a "queue" and a "routing_key"?

My understanding of AMQP is that messages only have the following components: The message body The routing key The exchange …

python celery amqp
running celery as daemon using supervisor is not working

I have a django app in which it has a celery functionality, so i can able to run the celery …

django celery supervisord celery-task