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

Celery Python Object Methods

I am trying to get celery tasks wrapper around a python object method. Like: class A: @task … Read more Celery Python Object Methods

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

How Can I Log From My Python Application To Splunk, If I Use Celery As My Task Scheduler?

I have a python script running on a server, that should get executed once a day by the celery sched… Read more How Can I Log From My Python Application To Splunk, If I Use Celery As My Task Scheduler?

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

Revoke Celery Tasks With Same Args/kwargs

Imagine having a long running task with a specific set of args and kwargs. Is there any chance to r… Read more Revoke Celery Tasks With Same Args/kwargs

Trouble Getting Result From Celery Queue

I have been playing with Celery on Windows 7. Right now, I am going through the Next Steps tutoria… Read more Trouble Getting Result From Celery Queue

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 Daemonize Django Celery Periodic Task On Ubuntu Server?

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?