Top "Celery" questions

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

Retrieve list of tasks in a queue in Celery

How can I retrieve a list of tasks in a queue that are yet to be processed?

python celery
Deleting all pending tasks in celery / rabbitmq

How can I delete all pending tasks without knowing the task_id for each task?

task rabbitmq celery celery-task
How to check task status in Celery?

How does one check whether a task is running in celery (specifically, I'm using celery-django)? I've read the documentation, and …

python web-services celery django-celery
Celery Received unregistered task of type (run example)

I'm trying to run example from Celery documentation. I run: celeryd --loglevel=INFO /usr/local/lib/python2.7/dist-packages/celery/loaders/…

python celery
RabbitMQ (beam.smp) and high CPU/memory load issue

I have a debian box running tasks with celery and rabbitmq for about a year. Recently I noticed tasks were …

erlang debian rabbitmq celery mnesia
Cancel an already executing task with Celery?

I have been reading the doc and searching but cannot seem to find a straight answer: Can you cancel an …

python django celery message-passing
What is the maximum value size you can store in redis?

Does anyone know what the maximum value size you can store in redis? I want to use redis as a …

redis celery
Send log messages from all celery tasks to a single file

I'm wondering how to setup a more specific logging system. All my tasks use logger = logging.getLogger(__name__) as a …

python logging celery
Python SSL connection "EOF occurred in violation of protocol"

I'm using Django Celery task to connect to Facebook Graph API with requests lib using Gevent. Issue I'm constantly running …

python django celery python-requests gevent
How can I recover unacknowledged AMQP messages from other channels than my connection's own?

It seems the longer I keep my rabbitmq server running, the more trouble I have with unacknowledged messages. I would …

rabbitmq celery amqp pika celeryd