Top "Celery-task" questions

celery-task is a building block of Celery distributed task queue system

running celery as daemon using supervisor is not working

I have a django app in which it has a celery functionality, so i can able to run the celery …

django celery supervisord celery-task
kombu.exceptions.EncodeError: User is not JSON serializable

I have django 1.11.5 app with celery 4.1.0 and I recived all the time: kombu.exceptions.EncodeError: <User: testuser> is …

python json django celery celery-task
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
Where do you set the task_id of a celery task?

I am having trouble finding any example of setting a task_id with my own task_id something along these …

python django-celery celery-task
Cannot start Celery Worker (Kombu.asynchronous.timer)

I followed the first steps with Celery (Django) and trying to run a heavy process in the background. I have …

python python-3.x celery django-celery celery-task
Celery stop execution of a chain

I have a check_orders task that's executed periodically. It makes a group of tasks so that I can time …

python celery django-celery celery-task celerybeat
Python celery - how to wait for all subtasks in chord

I am unit testing celery tasks. I have chain tasks that also have groups, so a chord is resulted. The …

python celery celery-task chord
Get the name of celery worker from inside a celery task?

I'd like a celery task to be able to get the name of the worker executing it, for logging purposes. …

python celery celery-task
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 solve the a celery worker configuration with keyword argument namespace='"CELERY"error in the celery file

I have a project name called ShippingApp and I followed the steps to set up the celery worker. I am …

python django pycharm celery-task