Top "Celery" questions

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

Retry Celery tasks with exponential back off

For a task like this: from celery.decorators import task @task() def add(x, y): if not x or not …

python celery django-celery
Python task queue alternatives and frameworks

There seem to be different implementations of task/job queues for Python 3: Celery, popular but apparently unmaintained and stale; RQ, …

python-3.x celery
Python+Celery: Chaining jobs?

The Celery documentation suggests that it's a bad idea to have tasks wait on the results of other tasks… But …

python celery
How can I defer the execution of Celery tasks?

I have a small script that enqueues tasks for processing. This script makes a whole lot of database queries to …

python django celery django-celery
How to set up celery workers on separate machines?

I am new to celery.I know how to install and run one server but I need to distribute the …

python celery
Celery with Amazon SQS

I want to use Amazon SQS as broker backed of Celery. There’s the SQS transport implementation for Kombu, which …

amazon-web-services celery amazon-sqs kombu
Celery - run different workers on one server

I have 2 kind of tasks : Type1 - A few of high priority small tasks. Type2 - Lot of heavy tasks …

django celery
Retrieve a task result object, given a `task_id` in Celery

I store the task_id from an celery.result.AsyncResult in a database and relate it to the item that …

python celery
Create celery tasks then run synchronously

My app gathers a bunch of phone numbers on a page. Once the user hits the submit button I create …

python django celery django-celery
Celery - How to send task from remote machine?

We have a server running celery workers and a Redis queue. The tasks are defined on that server. I need …

python celery