Top "Django-celery" questions

Django-celery provides Celery integration for Django.

How to run a Django celery task every 6am and 6pm daily?

Hi I have Django Celery in my project. Currently its running every 12hour a day (Midnight/00:00am and 12:00pm). But …

python django django-celery periodic-task
Is it possible to show progress bar of django celery task?

I am using database backend in django celery. The task information is stored in a table called: celery_taskmeta in …

django celery django-celery djcelery
django/celery - celery status: Error: No nodes replied within time constraint

I'm trying to deploy a simple example of celery in my production server, I've followed the tutorial in the celery …

python django celery django-celery
Django Celery: Admin interface showing zero tasks/workers

I've setup Celery with Django ORM as back-end. Trying to monitor what's going on behind the scene. I've started celeryd …

celery django-celery
How to log exceptions occurring in a django celery task

I have set up celery to work with my django application using their daemonization instructions (http://docs.celeryproject.org/en/…

logging celery django-celery
Active Django settings file from Celery worker

So I already looked around a lot for this but couldn't find a good answer. I'm using Celery 3.1.7 and Django 1.5.1., …

python django celery django-celery
Stopping celery task gracefully

I'd like to quit a celery task gracefully (i.e. not by calling revoke(celery_task_id, terminate=True)). I …

python celery django-celery celery-task
Celery: per task concurrency limits (# of workers per task)?

Is it possible to set the concurrency (the number of simultaneous workers) on a per-task level in Celery? I'm looking …

celery django-celery
Django: How to automatically change a field's value at the time mentioned in the same object?

I am working on a django project for racing event in which a table in the database has three fields. 1)…

python django django-models celery django-celery
Celery worker and beat load in one command

Is there a way to start the celery worker and beat in one command? I would like to add celery …

celery django-celery celerybeat django-deployment