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

Celery Tasks Doesn't Works

Celery docs say that Celery 3.1 can work with django out of box. But tasks not working. I have task… Read more Celery Tasks Doesn't Works

In Celery Task Queue, Is Running Tasks In A Group Any Different Than Multiple Asyncs In A Loop?

Let's say I have a very simple task like this: @celery.task(ignore_result=True) def print_page(… Read more In Celery Task Queue, Is Running Tasks In A Group Any Different Than Multiple Asyncs In A Loop?

Celery Heartbeat Not Working

I have set heartbeat in Celery settings: BROKER_HEARTBEAT = 10 I have also set this configuration … Read more Celery Heartbeat Not Working

Amqp Connection Reset By Peer, But Celery Connected

I have a flask app using Celery with RabbitMQ as the broker. I've followed the instructions in … Read more Amqp Connection Reset By Peer, But Celery Connected

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 Not Queuing Tasks To Broker On Remote Server, Adds Tasks To Localhost Instead

celery.py # set the default Django settings module for the 'celery' program. os.environ.set… Read more Celery Not Queuing Tasks To Broker On Remote Server, Adds Tasks To Localhost Instead