Top "Celery" questions

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

Python based asynchronous workflow modules : What is difference between celery workflow and luigi workflow?

I am using django as a web framework. I need a workflow engine that can do synchronous as well as …

python celery luigi
celerybeat - multiple instances & monitoring

I'm having application built using celery and recently we got a requirement to run certain tasks on schedule. I think …

python python-2.7 celery celerybeat
Celery Flower as Daemon

Im running celery with a redis backend. I want to run celery flower as a daemon on centos 6.2. I understand …

celery tornado flower
Running Django-Celery in Production

I've built a Django web application and some Django-Piston services. Using a web interface a user submits some data which …

django celery django-piston
Retrieve result from 'task_id' in Celery from unknown task

How do I pull the result of a task if I do not know previously which task was performed? Here's …

python celery jobs celery-task
How to tell if a task has already been queued in django-celery?

Here's my setup: django 1.3 celery 2.2.6 django-celery 2.2.4 djkombu 0.9.2 In my settings.py file I have BROKER_BACKEND = "djkombu.transport.DatabaseTransport" i.…

django message-queue celery django-celery
Celery, kombu and django - import error

I am running an application with django, and I wanted to use celery to make some scheduled tasks. According to …

python django celery kombu
Docker/Kubernetes + Gunicorn/Celery - Multiple Workers vs Replicas?

I was wondering what the correct approach to deploying a containerized Django app using gunicorn & celery was. Specifically, each …

django docker kubernetes celery gunicorn
Django Celery implementation - OSError : [Errno 38] Function not implemented

I installed django-celery and I tried to start up the worker server but I get an OSError that a function …

python django celery celery-task
Task priority in celery with redis

I would like to implement a distributed job execution system with celery. Given that rabbitMQ doesn't support priorities and I'm …

python celery distributed