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

Celery: Is There A Way To Write Custom Json Encoder/decoder?

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

Initializing Different Celery Workers With Different Values

I am using celery to run long running tasks on Hadoop. Each task executes a Pig script on Hadoop wh… Read more Initializing Different Celery Workers With Different Values

How To Structure Celery Tasks

I have 2 types of task: async tasks and schedule tasks. So, here is my dir structure: proj | --… Read more How To Structure Celery Tasks

How To Get All Tasks And Periodic Tasks In Celery

Possible Duplicate: How can I find all subclasses of a given class in Python? In my Django projec… Read more How To Get All Tasks And Periodic Tasks In Celery

Python Celery - Get() Is Delayed

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

How To Configure And Run Celerybeat

I am just getting started with celery,trying to run a periodic task. Configured *rabbitmq** added c… Read more How To Configure And Run Celerybeat

How To Configure Celerybeat_schedule In Django Settings?

I can get this to run as a standalone application, but I am having trouble getting it to work in Dj… Read more How To Configure Celerybeat_schedule In Django Settings?