Celery Json Python Celery: Is There A Way To Write Custom Json Encoder/decoder? June 22, 2024 Post a Comment 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?
Celery Python Redis How To Inspect And Cancel Celery Tasks By Task Name May 18, 2024 Post a Comment 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 Django Python Rabbitmq Celery Heartbeat Not Working March 23, 2024 Post a Comment I have set heartbeat in Celery settings: BROKER_HEARTBEAT = 10 I have also set this configuration … Read more Celery Heartbeat Not Working
Celery Python Python Celery - Get() Is Delayed March 20, 2024 Post a Comment 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
Celery Python Rabbitmq Rabbitmq Queued Messages Keep Increasing March 09, 2024 Post a Comment We have a Windows based Celery/RabbitMQ server that executes long-running python tasks out-of-proce… Read more Rabbitmq Queued Messages Keep Increasing
Amqp Celery Python Rabbitmq Celery Does Not Release Memory February 09, 2024 Post a Comment It looks like celery does not release memory after task finished. Every time a task finishes, there… Read more Celery Does Not Release Memory
Celery Containers Kubernetes Python How Can I Properly Kill A Celery Task In A Kubernetes Environment? January 30, 2024 Post a Comment 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?
Celery Django Python How Can Celery Distribute Users' Tasks In A Fair Way? January 28, 2024 Post a Comment 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?