Top "Celery" questions

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

Unit testing with django-celery?

I am trying to come up with a testing methodology for our django-celery project. I have read the notes in …

python django unit-testing celery
How to debug Celery/Django tasks running locally in Eclipse

I need to debug Celery task from the Eclipse debugger. I'm using Eclipse, PyDev and Django. First, I open my …

python eclipse celery
Examples of Django and Celery: Periodic Tasks

I have been fighting the Django/Celery documentation for a while now and need some help. I would like to …

django rabbitmq celery django-celery
import error in celery

this is the code which i am running: from __future__ import absolute_import from celery import Celery celery1 = Celery('celery',…

python celery pycharm celery-task
Understanding celery task prefetching

I just found out about the configuration option CELERYD_PREFETCH_MULTIPLIER (docs). The default is 4, but (I believe) I want …

python celery celeryd
Setting up periodic tasks in Celery (celerybeat) dynamically using add_periodic_task

I'm using Celery 4.0.1 with Django 1.10 and I have troubles scheduling tasks (running a task works fine). Here is the celery …

python django scheduled-tasks celery celerybeat
Celery: list all tasks, scheduled, active *and* finished

Update for the bounty I'd like a solution that does not involve a monitoring thread, if possible. I know I …

celery celery-task
Celery does not release memory

It looks like celery does not release memory after task finished. Every time a task finishes, there would be 5m-10…

python rabbitmq celery amqp
How to send periodic tasks to specific queue in Celery

By default Celery send all tasks to 'celery' queue, but you can change this behavior by adding extra parameter: @task(…

python celery django-celery
Run a Scrapy spider in a Celery Task

This is not working anymore, scrapy's API has changed. Now the documentation feature a way to "Run Scrapy from a …

scrapy twisted celery