Top "Celery" questions

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

How to stop celery worker process

I have a Django project on an Ubuntu EC2 node, which I have been using to set up an asynchronous …

python django amazon-ec2 celery
Celery Worker Error: ImportError no module named celery

I am getting an import error when I try to start my celery worker. I am not sure what the …

python flask celery celery-task
Django Celery - Cannot connect to amqp://[email protected]:5672//

I'm trying to set up Django-Celery. I'm going through the tutorial http://docs.celeryproject.org/en/latest/django/first-steps-with-django.html …

python django celery
How do you unit test a Celery task?

The Celery documentation mentions testing Celery within Django but doesn't explain how to test a Celery task if you are …

python unit-testing celery
Django Celery Logging Best Practice

I'm trying to get Celery logging working with Django. I have logging set-up in settings.py to go to console (…

python django logging celery django-celery
How do I restart celery workers gracefully?

While issuing a new build to update code in workers how do I restart celery workers gracefully? Edit: What I …

django celery celeryd
Starting Celery: AttributeError: 'module' object has no attribute 'celery'

I try to start a Celery worker server from a command line: celery -A tasks worker --loglevel=info The code …

python django celery django-celery
Celery - Get task id for current task

How can I get the task_id value for a task from within the task? Here's my code: from celery.…

python django celery
Celery Logs into file

Can someone please help and tell me how to get the celery task debug details to a log file? I …

python celery
Django, ImportError: cannot import name Celery, possible circular import?

I went through this example here: http://docs.celeryproject.org/en/latest/django/first-steps-with-django.html All my tasks are in …

python django celery importerror