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

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?

Pause Celery Task

I'm trying to pause a celery task temporary based on user button click. What I've done is: … Read more Pause Celery Task

Start Celery Worker And Enable It For Broadcast Queue

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 Logger Configuration

I'm using Django 1.10, python 3.5 and celery 4.1.0 I'm trying to log celery tasks info into… Read more Celery Logger Configuration

Celery Flower - How Can I Load Previous Catched Tasks?

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?

Call Django Celery Task By Name

I need to call a celery task (in tasks.py) from models.py, the only problem is, tasks.py imports mo… Read more Call Django Celery Task By Name

Run While Loop Concurrently With Flask Server

I'm updating some LEDs using python. I've been doing this like so: from LEDs import * myLED… Read more Run While Loop Concurrently With Flask Server

Celery Task For File Uploading In Django Wizard

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