Top "Celery" questions

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

What is the best option for a (Python 3) task queue on Windows now that Celery 4 has dropped Windows support?

We run a Flask site under IIS on Windows, and for out-of-process tasks we use Celery. Celery has given us …

python flask queue celery python-huey
uwsgi: What defines the number of workers/process that a django app needs?

I have a question for sysadmins and developers. I see that uWSGI allows me to set the number or workers …

python django nginx celery uwsgi
Unable to start Airflow worker/flower and need clarification on Airflow architecture to confirm that the installation is correct

Running a worker on a different machine results in errors specified below. I have followed the configuration instructions and have …

python rabbitmq celery airflow
In-Memory broker for celery unit tests

I have a REST API written in Django, with and endpoint that queues a celery task when posting to it. …

django celery kombu
How to configure and run celerybeat

I am just getting started with celery,trying to run a periodic task. Configured *rabbitmq** added celeryconfig.py. And added …

python celery celerybeat
celery beat doesn't work properly

when i run this command for celery beat. [2013-06-27 02:17:05,936: INFO/MainProcess] Celerybeat: Starting... [2013-06-27 02:17:05,937: INFO/MainProcess] Writing entries... [2013…

celery django-celery celerybeat
celery: daemonic processes are not allowed to have children

In Python (2.7) I try to create processes (with multiprocessing) in a celery task (celery 3.1.17) but it gives the error: daemonic …

python python-2.7 celery daemon python-multiprocessing
How are Django channels different than celery?

Recently I came to know about Django channels. Can somebody tell me the difference between channels and celery, as well …

python django celery channels
Developing with Django+Celery without running `celeryd`?

In development, it's a bit of a hassle to run the celeryd as well as the Django development server. Is …

python django celery
Tornado/Twisted - Celery - Gevent Comparison

I'm having a bit of trouble understanding the differences between these three frameworks: Tornado/Twisted Celery Gevent These three frameworks …

python twisted celery tornado gevent