Top "Celery" questions

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

How to properly configure djcelery results backend to database

I'm trying to setup djangocelery to store task results in the databse. I set: CELERY_RESULT_BACKEND = 'djcelery.backends.database.…

django celery djcelery
Python Celery - How to call celery tasks inside other task

I'm calling a task within a tasks in Django-Celery Here are my tasks. @shared_task def post_notification(data,url): …

python django celery djcelery
Some Celery tasks work, others are NotRegistered

I follow the Celery Django tutorial and the tasks I see in the example (add, mul) work for me perfectly. …

python django celery django-celery
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
How to structure celery tasks

I have 2 types of task: async tasks and schedule tasks. So, here is my dir structure: proj | -- tasks | -- __…

python celery
supervisord always returns exit status 127 at WebFaction

I keep getting the following errors from supervisord at webFaction when tailing the log: INFO exited: my_app (exit status 127; …

python celery supervisord webfaction
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
How to chain a Celery task that returns a list into a group?

I want to create a group from a list returned by a Celery task, so that for each item in …

python celery