Top "Django-celery" questions

Django-celery provides Celery integration for Django.

Retry Celery tasks with exponential back off

For a task like this: from celery.decorators import task @task() def add(x, y): if not x or not …

python celery django-celery
How can I defer the execution of Celery tasks?

I have a small script that enqueues tasks for processing. This script makes a whole lot of database queries to …

python django celery django-celery
Create celery tasks then run synchronously

My app gathers a bunch of phone numbers on a page. Once the user hits the submit button I create …

python django celery django-celery
Celery task state always pending

I am pretty new to celery and django in general so please excuse my lack of knowledge. I am trying …

python django celery django-celery celery-task
Add n tasks to celery queue and wait for the results

I would add multiple tasks to celery queue and wait for results. I have various ideas how I would achieve …

python django celery django-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
Django-Celery progress bar

I use: Celery Django-Celery RabbitMQ I can see all my tasks in the Django admin page, but at the moment …

django django-celery
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
RabbitMQ set_permissions syntax noob

I've seen other posts on stackoverflow related in some ways to the ridiculous question I'm about to ask but none …

rabbitmq celery django-celery
Celery, calling delay with countdown

I'm trying to understand how celery works In my django application in tasks.py file I have created one task: @…

python django celery django-celery