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

How To Route Tasks To Different Queues With Celery And Django

I am using the following stack: Python 3.6 Celery v4.2.1 (Broker: RabbitMQ v3.6.0) Django v2.0.4. … Read more How To Route Tasks To Different Queues With Celery And Django

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 Do You Deal With An Exception Raised By Celery (not Your Code)?

So in my flask app right now I am using Celery to deploy servers on remote machines. Right now, I h… Read more How Do You Deal With An Exception Raised By Celery (not Your Code)?

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

Celery: Auto Discovery Does Not Find Tasks Module In App

I have the following setup with a fresh installed celery and django 1.4: settings.py: import djcel… Read more Celery: Auto Discovery Does Not Find Tasks Module In App

Celery - Schedule Periodic Task At The End Of Another Task

I want to schedule a periodic task with Celery dynamically at the end of another group of task. I k… Read more Celery - Schedule Periodic Task At The End Of Another Task

Celery Not Picking Celery_always_eager Settings

I am running Django 1.8 + Celery 4.0.2 Celery is configured well and can run my Django tasks locall… Read more Celery Not Picking Celery_always_eager Settings

Unit Testing An Asyncresult In Celery

I am trying to test some celery functionality in Django's unit testing framework, but whenever … Read more Unit Testing An Asyncresult In Celery