Top "Celery" questions

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

supervisor - how to run multiple commands

I'm managing a Celery worker that processes queue via Supervisor. Here's my /etc/supervisor/celery.conf: [program:celery] command = /var/…

python celery supervisord
Find out whether celery task exists

Is it possible to find out whether a task with a certain task id exists? When I try to get …

python task status celery
Celery and Django simple example

Let's take a simple Django example. app/models.py from django.db import models from django.contrib.auth.models import …

python django celery scalability
Using Celery on processes and gevent in tasks at the same time

I'd like to use Celery as a queue for my tasks so my web app could enqueue a task, return …

python multiprocessing celery gevent monkeypatching
Why does Celery NOT throw an Exception when the underlying task throws one

Celery doesn't seem to be handling exceptions properly. If I have task: def errorTest(): raise Exception() and then I call …

python exception-handling celery
Celery task state always pending

I am pretty new to celery and django in general so please excuse my lack of knowledge. I am trying …

python django celery django-celery celery-task
Celery Worker Database Connection Pooling

I am using Celery standalone (not within Django). I am planning to have one worker task type running on multiple …

python postgresql connection-pooling celery
Add n tasks to celery queue and wait for the results

I would add multiple tasks to celery queue and wait for results. I have various ideas how I would achieve …

python django celery django-celery
How to combine Celery with asyncio?

How can I create a wrapper that makes celery tasks look like asyncio.Task? Or is there a better way …

python python-3.x asynchronous celery python-asyncio
how to remove task from celery with redis broker?

I Have add some wrong task to a celery with redis broker but now I want to remove the incorrect …

python celery celery-task celeryd