0
votes
0answers
38 views

Celery: Single instance of an active task in a distributed environment

I have a requirement where my application submits a certain kind of task. This task is submitted by the clients. To make sure that they don't end up submitting too many tasks, every time they submit a ...
1
vote
1answer
112 views

Is using Celery for task management in cluster good idea?

I'm going to use Celery to manage tasks in cluster. There will be one master server and some worker servers. Master sends tasks to the worker servers (any number) and gets the result. Task state ...
0
votes
1answer
142 views

Celery: long dedicated monolithic task vs short multiple tasks

In my solution I use distributed tasks to monitor hardware instances for a period of time (say, 10 minutes). I have to do some stuff when: I start this monitoring session I finish this monitoring ...
1
vote
1answer
456 views

Data analysis using MapReduce in MongoDb vs a Distributed Queue using Celery & RabbitMq

I am currently working on a project which involves performing a lot of statistical calculations on many relatively small datasets. Some of these calculations are as simple as computing a moving ...
0
votes
2answers
156 views

Celery appropriate for this task?

This query is related to my Google Summer of Code project. Basically, I have a master node which delegates build tasks to a number of specified image building nodes. Right now, I do it using a manual, ...
3
votes
1answer
288 views

A semaphore-like mechanism for Celery

We're developing a distributed application in Python + Celery for our task queue. Our application requires us to download emails from a remote ISP via IMAP (e.g.: gmail) and we're looking to have be ...
0
votes
1answer
505 views

Add functions dynamically to existing celery worker processes?

I'm getting started with celery and I want to know if it is possible to add modules to celeryd processes that have already been started. In other words, instead of adding modules via celeryconfig.py ...