Top "Celery" questions

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

celeryev Queue in RabbitMQ Becomes Very Large

I am using celery on rabbitmq. I have been sending thousands of messages to the queue and they are being …

rabbitmq celery django-celery
Python celery - how to wait for all subtasks in chord

I am unit testing celery tasks. I have chain tasks that also have groups, so a chord is resulted. The …

python celery celery-task chord
Disable pidfile for celerybeat

celeryd doesn't require a pidfile, but celerybeat seems to. Is there any way to disable it? I'm using Upstart to …

celery celerybeat
trouble in setting celery tasks backend in Python

I followed all the steps given in [ http://docs.celeryproject.org/en/latest/getting-started/first-steps-with-celery.html ] This is the code: …

python python-3.x redis celery redis-server
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
ImportError: No module named exceptions

i'm trying to install kitsune in the ubuntu terminal. I am not able to initialize the database. When i give …

exception python-2.7 ubuntu celery billiards
what's difference between celeryd, celery worker, celerybeat?

What is the difference between these? celeryd celery worker celerybeat I'm trying to setup celery + supervisor and some conf file …

celery
Updating a Haystack search index with Django + Celery

In my Django project I am using Celery. I switched over a command from crontab to be a periodic task …

python django indexing celery django-haystack
Supervising celerybeat with supervisor and virtualenv

My celerybeat.conf [program:celerybeat] command=/path/app/env/bin/celery beat -A project.tasks --loglevel=INFO environment=PYTHONPATH=/path/…

python celery supervisord celerybeat
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