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?
Celery Celery Task Flower Python Celery Flower - How Can I Load Previous Catched Tasks? December 12, 2023 Post a Comment I started to use celery flower for tasks monitoring and it is working like a charm. I have one conc… Read more Celery Flower - How Can I Load Previous Catched Tasks?
Celery Django Django Celery Python How To Daemonize Django Celery Periodic Task On Ubuntu Server? November 26, 2023 Post a Comment On localhost, i used these statements to execute tasks and workers. Run tasks: python manage.py cel… Read more How To Daemonize Django Celery Periodic Task On Ubuntu Server?
Celery Python Rabbitmq Start Celery Worker And Enable It For Broadcast Queue November 23, 2023 Post a Comment I'm trying to start celery worker so it only listens to single queue. This is not a problem, I … Read more Start Celery Worker And Enable It For Broadcast Queue
Celery Distributed Python Task Priority In Celery With Redis October 24, 2023 Post a Comment I would like to implement a distributed job execution system with celery. Given that rabbitMQ doesn… Read more Task Priority In Celery With Redis
Celery Django Python Race Condition Django Related Objects Are Missing From Celery Task (race Condition?) September 12, 2023 Post a Comment Strange behavior, that I don't know how to explain. I've got a model, Track, with some rela… Read more Django Related Objects Are Missing From Celery Task (race Condition?)
Celery Python Get Progress From Async Python Celery Chain By Chain Id August 01, 2023 Post a Comment I'm trying to get the progress of a task chain by querying each task status. But when retrievin… Read more Get Progress From Async Python Celery Chain By Chain Id
Celery Django Python Celery Task For File Uploading In Django Wizard April 20, 2023 Post a Comment I have a WizardView covering two forms, the second one has a FileField. Is it possible to create a … Read more Celery Task For File Uploading In Django Wizard
Celery Django Django Models Python Is It Possible To Use Django Models Module Only In My Project? January 24, 2023 Post a Comment I am developing a small independent python application which uses Celery. I have built this using d… Read more Is It Possible To Use Django Models Module Only In My Project?
Celery Django Python Unit Testing How To Test If Email Was Sent After Executing Celery Task August 03, 2022 Post a Comment I'm using Django 1.10 and Celery 4.1 I have a shared_task which sends an email to the user. # m… Read more How To Test If Email Was Sent After Executing Celery Task