Skip to content Skip to sidebar Skip to footer
Showing posts with the label Celery

Celery: Is There A Way To Write Custom Json Encoder/decoder?

I have some objects I want to send to celery tasks on my application. Those objects are obviously n… Read more Celery: Is There A Way To Write Custom Json Encoder/decoder?

How To Inspect And Cancel Celery Tasks By Task Name

I'm using Celery (3.0.15) with Redis as a broker. Is there a straightforward way to query the n… Read more How To Inspect And Cancel Celery Tasks By Task Name

Celery Heartbeat Not Working

I have set heartbeat in Celery settings: BROKER_HEARTBEAT = 10 I have also set this configuration … Read more Celery Heartbeat Not Working

Python Celery - Get() Is Delayed

I am running the following simple example. Submit 20 jobs that take 2 seconds each using a single w… Read more Python Celery - Get() Is Delayed

Rabbitmq Queued Messages Keep Increasing

We have a Windows based Celery/RabbitMQ server that executes long-running python tasks out-of-proce… Read more Rabbitmq Queued Messages Keep Increasing

Celery Does Not Release Memory

It looks like celery does not release memory after task finished. Every time a task finishes, there… Read more Celery Does Not Release Memory

How Can I Properly Kill A Celery Task In A Kubernetes Environment?

How can I properly kill celery tasks running on containers inside a kubernetes environment? The str… Read more How Can I Properly Kill A Celery Task In A Kubernetes Environment?

How Can Celery Distribute Users' Tasks In A Fair Way?

The task I'm implementing is related to scrape some basic info about a URL, such as title, desc… Read more How Can Celery Distribute Users' Tasks In A Fair Way?