Top "Django-celery" questions

Django-celery provides Celery integration for Django.

Why are celery_taskmeta and other tables not being created when running a syncdb in django?

I'm trying to setup celery and django, but the celery_taskmeta table is not being created. I've followed numerous (Recent) …

django celery django-celery
Python Celery versus Threading Library for running async requests

I am running a python method that parses a lot of data. Since it is time intensive, I would like …

python celery django-celery python-multithreading
Celery: Worker with concurrency and reserved tasks only running 1 task

Some of the tasks in my code were taking longer and longer to execute. Upon inspection I noticed that although …

concurrency celery django-celery
django-celery warnings about settings.DEBUG

I have some questions regarding running djcelery. When I run python manage.py celeryd --setting=settings The workers seem to …

django django-celery
celeryd and celerybeat pid files are not being created, workers are not starting, but output says OK

I setted up celeryd and celerybeat as daemons, and they worked until not too long. But since some time, it …

django django-celery daemons
How to tell if a task has already been queued in django-celery?

Here's my setup: django 1.3 celery 2.2.6 django-celery 2.2.4 djkombu 0.9.2 In my settings.py file I have BROKER_BACKEND = "djkombu.transport.DatabaseTransport" i.…

django message-queue celery django-celery
Django celery task run at once on startup of celery server

I need to find how to specify a kind of initial celery task, that will start all other tasks in …

python django celery django-celery