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

Django Celery Implementation - Oserror : [errno 38] Function Not Implemented

I installed django-celery and I tried to start up the worker server but I get an OSError that a fun… Read more Django Celery Implementation - Oserror : [errno 38] Function Not Implemented

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

How To Pause Or Resume Celery Task?

I am having a requirement in my project where customer can pause or resume process which are pendin… Read more How To Pause Or Resume Celery Task?

Celery Expires - Rise Exception

In docs link about expires # Task expires after one minute from now. add.apply_async(args=[10, 10],… Read more Celery Expires - Rise Exception

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

Python Celery - How To Call Celery Tasks Inside Other Task

I'm calling a task within a tasks in Django-Celery Here are my tasks. @shared_task def post_not… Read more Python Celery - How To Call Celery Tasks Inside Other Task