0
votes
2answers
66 views

Django asynchronous requests

Does Django have something similar to ASP.NET MVC's Asynchronous Controller? I have some requests that will be handled by celery workers, but won't take a long time (a few seconds). I want the ...
1
vote
1answer
65 views

Django celery task: Newly created model DoesNotExist

Why is a model instance I've created, when queried from a celery task started directly afterwards, not found? For example: # app.views model = Model.objects.create() # I create my lovely model in ...
2
votes
2answers
650 views

Concurrent asynchronous processes with Python, Flask and Celery

I am working on a small but computationally-intensive Python app. The computationally-intensive work can be broken into several pieces that can be executed concurrently. I am trying to identify a ...
1
vote
0answers
56 views

Purpose of asynchronous task queue

i'm new to web development, so bear with. I just came across Celery, an asynchronous task queue. After reading the documentation, what i get that celery is adding a delay to a code and then run its ...
1
vote
3answers
317 views

Celery: How to ignore task result in chord or chain?

I'm using celery, I have several tasks which needed to be executed in order. For example I have this task: @celery.task def tprint(word): print word And I want to do something like this: ...
0
votes
1answer
100 views

How to set task status in celery chain

I need to run three tasks which need to be ran in a chain. So when i request comes i need to run three tasks in this order. Each task gets input from the previous one. Request---> [First Task] ...
4
votes
2answers
236 views

Asynchronous replacement for Celery

We're using Celery for background tasks in our Django project. Unfortunately, we have many blocking sockets in tasks, that can be established for a long time. So Celery becomes fully loaded and does ...
2
votes
1answer
197 views

Celery Task Grouping/Aggregation

I'm planning to use Celery to handle sending push notifications and emails triggered by events from my primary server. These tasks require opening a connection to an external server (GCM, APS, email ...
0
votes
1answer
198 views

Python Celery Save Results in Database Asynchronously

I'm using Python with Celery and RabbitMQ to make a web spider to count the number of links on a page. Can a database, such as MySQL, be written into asynchronously? Is it OK to commit the changes ...
4
votes
1answer
459 views

How is rate_limit enforced in Celery?

I'm running a Django website where I use Celery to implement preventive caching - that is, I calculate and cache results even before they are requested by the user. However, one of my Celery tasks ...
2
votes
2answers
2k views

In Celery, how do I run a task, and then have that task run another task, and keep it going?

#tasks.py from celery.task import Task class Randomer(Task): def run(self, **kwargs): #run Randomer again!!! return random.randrange(0,1000000) >>> from tasks import ...
6
votes
2answers
3k views

Django Asynchronous Processing

I have a bunch of Django requests which executes some mathematical computations ( written in C and executed via a Cython module ) which may take an indeterminate amount ( on the order of 1 second ) of ...
5
votes
1answer
818 views

Asynchronous message queues and processing like Amazon Simple Queue service in django

There are many activities on an application that need things like: Send email, Post to twitter thumbnail an image, into several sizes call a cron to find connected relationships A good way to do ...