Django-celery provides Celery integration for Django.
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-celeryI 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-celeryI'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-celeryI try to start a Celery worker server from a command line: celery -A tasks worker --loglevel=info The code …
python django celery django-celeryI'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-taskI have created a django-celery application as in the tutorial at: http://docs.celeryproject.org/en/master/django/first-steps-with-django.html …
django-celeryI'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-postgresqlI'm using Celery to manage asynchronous tasks. Occasionally, however, the celery process goes down which causes none of the tasks …
python django celery django-celeryI'm trying to use the methods of class as the django-celery tasks, marking it up using @task decorator. The same …
python django-celeryI 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