Tagged Questions
0
votes
0answers
17 views
javac is not running under a subprocess launched over http
I'm running a django web application witch launch a java compilation command and I need to catch the javac stderr, I've put it in a separate task (Celery), here is the code:
class JavaSubTask(Task):
...
2
votes
0answers
57 views
How to ACK celery tasks with parallel code in reactor?
I have a celery task that, when called, simply ignites the execution of some parallel code inside a twisted reactor. Here's some sample (not runnable) code to illustrate:
def run_task_in_reactor():
...
0
votes
1answer
32 views
Email - Process Ads website emails with custom solution or using Celery/RabbitMQ?
I need to process e-mails for a medium project that will be expectecting to send 20 or 30 emails per hour.
I've designed a solution in other project that uses a database table and a cronjob running ...
0
votes
1answer
183 views
Django / Celery / Kombu worker error: Received and deleted unknown message. Wrong destination?
It seems as though messages are not getting put onto the queue properly.
I'm using Django with Celery and Kombu to make use of Django's own database as a Broker Backend. All I need is a very simple ...
0
votes
1answer
54 views
using topic exchange to send message from one method to another
Recently, I have been going though celery & kombu documentation as i need them integrated in one of my projects. I have a basic understanding of how this should work but documentation examples ...
0
votes
1answer
91 views
Distributed rate limiting
I have multiple servers/workers going through a task queue doing API requests. (Django with Memcached and Celery for the queue) The API requests are limited to 10 requests a second. How can I rate ...
13
votes
2answers
1k views
Why do we need a message brokers like rabbitmq over database like postgres? [closed]
I am new to message brokers like rabbitmq which we can use to create tasks / message queues for a scheduling system like celery.
Now, here is the question :
I can create a table in postgres which ...
2
votes
2answers
2k views
Why use Celery instead of RabbitMQ?
From my understanding, Celery is a distributed task queue, which means the only thing that it should do is dispatching tasks/jobs to others servers and get the result back. RabbitMQ is a message ...
3
votes
1answer
350 views
Creating queues dynamically with Celery
I am writing a mailing-list manager using Django, Celery, and RabbitMQ. When a message comes in, a task is executed for each recipient. All tasks go to a single queue, and one or more workers consume ...
0
votes
1answer
274 views
Best practice for decoupling a database from a message queue
I am building a web application that allows a user to upload an image. When the image is uploaded, it needs to be resized to one or more sizes, each of which needs to be sent to Amazon s3 for storage. ...
0
votes
1answer
369 views
Python-compatible distributed messaging/task system (like Celery) that uses domain sockets
Is there anything like Celery that works with unix domain sockets? My current host (dreamhost) forbids the running of servers that listen on IP sockets, so I need something that will work with domain ...
25
votes
4answers
2k views
How to Guarantee Message delivery with Celery?
I have a python application where I want to start doing more work in the background so that it will scale better as it gets busier. In the past I have used Celery for doing normal background tasks, ...
9
votes
2answers
2k views
How to tell if a task has already been queued in django-celery?
Here's my setup:
django 1.3
celery 2.2.6
django-celery 2.2.4
djkombu 0.9.2
In my settings.py file I have
BROKER_BACKEND = "djkombu.transport.DatabaseTransport"
i.e. I'm just using the database ...
1
vote
1answer
803 views
Using celery/RabbitMQ (queues) hitting APIs in Django Request/Response cycle
I am working on a product, that requires crawling APIs and computing and returning results.
I am currently using Django as product. I had a detailed look at Documentation of Celery and RabbitMQ and ...
5
votes
4answers
2k views
Using MongoDB as message queue for Celery
I'm trying to use MongoDB as the message queue for Celery (in a Django app). The current development version of Celery (2.2.0rc2) is supposed to let you do this, but I can't seem to get any workers to ...
1
vote
1answer
1k views
Celery tasks vanishing - Django/Celery
here is my code:
my task
from celery.decorators import task
@task()
def add(x, y):
return x + y
using my tasks
from core.tasks import add
results = []
for i in range(100):
...
5
votes
3answers
521 views
How can I capture all of the python log records generated during the execution of a series of Celery tasks?
I want to convert my homegrown task queue system into a Celery-based task queue, but one feature I currently have is causing me some distress.
Right now, my task queue operates very coarsely; I run ...
5
votes
1answer
820 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 ...
28
votes
2answers
12k views
Rabbitmq or Gearman - choosing a jobs queue [closed]
At work, we need to build a jobs server for things like sending emails, building PDFs, crunching some data, etc. Obviously, we'd like to build on some sort of generic queueing system. I'm familiar ...
