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

Concurrent Asynchronous Processes With Python, Flask And Celery

I am working on a small but computationally-intensive Python app. The computationally-intensive wor… Read more Concurrent Asynchronous Processes With Python, Flask And Celery

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?

Oserror: Dlopen(libsystem.dylib, 6): Image Not Found

Just updated my Mac to El Capitan 10.11. I am trying to run Django 1.6 with Celery 3.1 and I'm… Read more Oserror: Dlopen(libsystem.dylib, 6): Image Not Found

Django-celery Infrastructure Over Multiple Servers, Broker Is Redis

Currently we have everything setup on single cloud server, that includes: Database server Apache C… Read more Django-celery Infrastructure Over Multiple Servers, Broker Is Redis

Celery - Importing Models In Tasks.py

I'm having an issue getting access to models in my tasks.py My goal is to send an email at var… Read more Celery - Importing Models In Tasks.py

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

Combining Chains, Groups And Chunks With Celery

I want to use Celery for a Url grabber. I have a list of Url, and I must do a HTTP request on every… Read more Combining Chains, Groups And Chunks With Celery

Celery Not Using All Concurrent Slots

I have a Celery cluster made up of machines with 8-core processors. Each machine has one worker th… Read more Celery Not Using All Concurrent Slots