0
votes
0answers
15 views
RabbitMQ gives a “access refused, login refused for user” error when attempting to follow the celery tutorial
I'm attempting to follow the celery tutorial, but I run into a problem when I run python manage.py celeryd: my RabbitMQ server (installed on a virtual machine on my dev box) won't let my user login.
…
13
votes
6answers
3k views
ActiveMQ or RabbitMQ or ZeroMQ or…
We'd be interested to hear any experiences with the pros and cons of ActiveMQ vs RabbitMQ vs ZeroMQ. Information about any other interesting message queues is also welcome.
1
vote
0answers
31 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 …
2
votes
3answers
140 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 …
0
votes
1answer
79 views
problems with rabbitmq cluster across 2 ubuntu 9.04 machines
I keep getting unable_to_contact_cluster_nodes error
Has anyone seen this earlier and resolved it?
I am using rabbitmq-server 1.5.4 installed using ubuntu repositories. I have a hunch that this is …
0
votes
0answers
39 views
How to wait for messages on multiple queues using py-amqplib
I'm using py-amqplib to access RabbitMQ in Python. The application receives requests to listen on certain MQ topics from time to time.
The first time it receives such a request it creates an AMQP …
0
votes
1answer
59 views
How do I properly snapshot an EBS volume with a RabbitMQ instance running?
I'm using RabbitMQ on an EC2 instance and I have the Mnesia tables on an EBS volume, so when I snapshot it and try to launch another instance with the same data, it appears that the table is in use by …
0
votes
0answers
22 views
Workling processes multiplying uncontrolably
Hello there. We have a rails app running on passenger and we background process some tasks using a combination of RabbitMQ and Workling. The workling's worker process is started using the …
0
votes
0answers
28 views
Unique Messages per Queue in AMQP?
This is similar to this other question but with a bit of a twist: I read in the specification that the message-id for AMQP messages should be set by the application itself, so in theory I could use …
1
vote
1answer
170 views
Check RabbitMQ queue size from client
Does anyone know if there's a way to check the number of messages in a queue from a client application? Thanks.
BTW, I'm using .NET client libraty.
1
vote
3answers
321 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
4answers
157 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 …
3
votes
1answer
108 views
Idempotency Barrier for messaging
A recent presentation I saw regarding RabbitMQ mentioned the use of something called an "idempotency barrier" for message de-duplication. Is this just a fancy name for a message conflator or is it …
1
vote
2answers
222 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 …
2
votes
0answers
143 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 …
