Top "Django-celery" questions

Django-celery provides Celery integration for Django.

How to check task status in Celery?

How does one check whether a task is running in celery (specifically, I'm using celery-django)? I've read the documentation, and …

python web-services celery django-celery
rabbitmq-server fails to start after hostname has changed for first time

I am using django-celery for my django project. Last day I have changed my computer's hostname (I am using Ubuntu 12.04, …

ubuntu rabbitmq django-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
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
How can I run a celery periodic task from the shell manually?

I'm using celery and django-celery. I have defined a periodic task that I'd like to test. Is it possible to …

python django celery django-celery celery-task
Django Celery application - No module named celery error

I have created a django-celery application as in the tutorial at: http://docs.celeryproject.org/en/master/django/first-steps-with-django.html …

django-celery
How to debug "could not receive data from client: Connection reset by peer"

I'm running a django-celery application on Ubuntu-12.04. When I run a celery task from my web interface, I get the …

django database-connection celery django-celery django-postgresql
Detect whether Celery is Available/Running

I'm using Celery to manage asynchronous tasks. Occasionally, however, the celery process goes down which causes none of the tasks …

python django celery django-celery
using class methods as celery tasks

I'm trying to use the methods of class as the django-celery tasks, marking it up using @task decorator. The same …

python django-celery
Celery: auto discovery does not find tasks module in app

I have the following setup with a fresh installed celery and django 1.4: settings.py: import djcelery djcelery.setup_loader() BROKER_…

python django celery django-celery