Top "Celery" questions

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

Active Django settings file from Celery worker

So I already looked around a lot for this but couldn't find a good answer. I'm using Celery 3.1.7 and Django 1.5.1., …

python django celery django-celery
Stopping celery task gracefully

I'd like to quit a celery task gracefully (i.e. not by calling revoke(celery_task_id, terminate=True)). I …

python celery django-celery celery-task
Celery: per task concurrency limits (# of workers per task)?

Is it possible to set the concurrency (the number of simultaneous workers) on a per-task level in Celery? I'm looking …

celery django-celery
RabbitMQ: What Does Celery Offer That Pika Doesn't?

I've been working on getting some distributed tasks working via RabbitMQ. I spent some time trying to get Celery to …

python rabbitmq celery task-queue pika
Django: How to automatically change a field's value at the time mentioned in the same object?

I am working on a django project for racing event in which a table in the database has three fields. 1)…

python django django-models celery django-celery
Celery worker and beat load in one command

Is there a way to start the celery worker and beat in one command? I would like to add celery …

celery django-celery celerybeat django-deployment
What is the meaning of bind = True keyword in celery?

What is the meaning of bind=True in below celery code? When to use it and when not? @app.task(…

python django celery
celery task clean-up with DB backend

I'm trying to understand how and when tasks are cleaned up in celery. From looking at the task docs I …

celery django-celery
Django/Celery multiple queues on localhost - routing not working

I followed celery docs to define 2 queues on my dev machine. My celery settings: CELERY_ALWAYS_EAGER = True CELERY_TASK_…

python django celery celerybeat
How can I set up Celery to call a custom initialization function before running my tasks?

I have a Django project and I'm trying to use Celery to submit tasks for background processing ( http://ask.github.…

python django daemon amqp celery