5
votes
1answer
396 views
Should I use Celery or Carrot for a Django project?
I'm a little confused as to which one I should use. I think either will work, but is one better or more appropriate than the other?
http://github.com/ask/carrot/tree/master
…
3
votes
4answers
429 views
Is AMQP suitable as both an intra and inter-machine software bus?
I'm trying to get my head around AMQP. It looks great for inter-machine (cluster, LAN, WAN) communication between applications but I'm not sure if it is suitable (in architectural, and current …
2
votes
0answers
133 views
In a FIFO Qeueing system, what’s the best way the to implement priority messaging.
For message-oriented middleware that does not consistently support priority messages (such as AMQP) what is the best way to implement priority consumption when queues have only FIFO semantics? The …
2
votes
4answers
573 views
Which group messaging technology to use?
I feel a little bit kind of confused — for about 24 hours I have been thinking which group broadcasting technology to use in my project.
Basically, what I need is:
create groups (by some backend …
2
votes
2answers
205 views
Deliver multicast to several different geo-locations
I need to use one logical PGM based multicast address in application while enable such application "seamlessly" running across several different geo-locations (i.e. think US/Europe/Australia).
…
2
votes
3answers
552 views
Serializing objects for asynchronous messaging
I'm considering using AMQP (using qpid) to enable a mixture of Python and Java services communicate with each other. Basic text messaging seems simple enough but, as with every other messaging …
1
vote
2answers
43 views
How to do Distributed Calculations in Excel
A number of years ago I implemented an asynchronous peer-to-peer Message-Oriented-Middle-ware that was very friendly to use in Excel VBA, and I find myself again needing to do lots of calculations …
1
vote
3answers
116 views
Benefits of Commercial Messaging Middleware vs Open Source
I've been evaluating several opensource message queue technologies, such as RabbitMQ, ActiveMQ, OpenAMQ, etc. My question is, what benefits are gained by using a commercial technology such as Tibco …
1
vote
4answers
143 views
Async / Enterprise Messaging for PHP Apps
What messaging platform would be the best choice for asynchronous message queuing (publish, consume) between PHP and Java apps? I have looked at RabbitMQ, ActiveMQ, OpenAMQ, Tibco Rendezvous, and …
1
vote
3answers
297 views
How to set timeout detection on a RabbitMQ server?
I am trying out RabbitMQ with this python binding.
One thing I noticed is that if I kill a consumer uncleanly (emulating a crashed program), the server will think that this consumer is still there …
1
vote
2answers
123 views
AMQP Delay Delivery and Prevent Duplicate Messages
I have a system that will generate messages sporadically, and I would like to only submit either zero or one message every 5 minutes. If no message is generated, nothing would be processed by the …
1
vote
2answers
205 views
Where to put message queue consumer in Django?
I'm using Carrot for a message queue in a Django project and followed the tutorial, and it works fine. But the example runs in the console, and I'm wondering how I apply this in Django. The publisher …
0
votes
0answers
8 views
Multiple consumer one queue
Is it possible to make multiple consumers to share one single queue in RabbitMQ? I am currently using this php library to work with RabbitMQ, from what I observe, although I have 2 identical instances …
0
votes
0answers
10 views
Passing back message with RabbitMQ
I am currently working on porting an existing script (slow, sequential script) to RabbitMQ and Gearman and evaluate which one work better. I have managed to get the Gearman branch working, but …
0
votes
0answers
8 views
Why use AMQP/ZeroMQ/RabbitMQ…
as opposed to writing your own library.
Were working on a project here that will be a self dividing server pool, if one section grows too heavy, the manager would divide it and put it on another …
