Top "Celery" questions

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

Detect whether Celery is Available/Running

I'm using Celery to manage asynchronous tasks. Occasionally, however, the celery process goes down which causes none of the tasks …

python django celery django-celery
How to keep multiple independent celery queues?

I'm trying to keep multiple celery queues with different tasks and workers in the same redis database. Really just a …

python celery
Pros and cons to use Celery vs. RQ

Currently I'm working on python project that requires implement some background jobs (mostly for email sending and heavily database updates). …

python redis celery scheduled-tasks python-rq
Celery with RabbitMQ: AttributeError: 'DisabledBackend' object has no attribute '_get_task_meta_for'

I'm running the First Steps with Celery Tutorial. We define the following task: from celery import Celery app = Celery('tasks', …

python celery
In celery 3.1, making django periodic task

Things changed too much in Django, so I can't use 3.1. I need some help. I read about make a task …

django celery celerybeat
Cannot import name _uuid_generate_random in heroku django

I am working on a project which scans user gmail inbox and provides a report. I have deployed it in …

python django heroku celery
How to run celery on windows?

How to run celery worker on Windows without creating Windows Service? Is there any analogy to $ celery -A your_application …

python celery
AttributeError: 'Flask' object has no attribute 'user_options'

I am trying to setup this basic example from the following doc: http://flask.pocoo.org/docs/patterns/celery/ But …

python flask celery
How to start a Celery worker from a script/module __main__?

I've define a Celery app in a module, and now I want to start the worker from the same module …

python celery celeryd
Celery: WorkerLostError: Worker exited prematurely: signal 9 (SIGKILL)

I use Celery with RabbitMQ in my Django app (on Elastic Beanstalk) to manage background tasks and I daemonized it …

django amazon-ec2 celery amazon-elastic-beanstalk supervisord