Tagged Questions
RabbitMQ is an open source robust messaging for applications. It is easy to use, fit for purpose at cloud scale and supported on all major operating systems and developer platforms.
171
votes
18answers
68k 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.
18
votes
4answers
482 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, ...
14
votes
2answers
3k 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
...
12
votes
1answer
718 views
Reduce RabbitMQ memory usage
I'm trying to run RabbitMQ on a small VPS (512mb RAM) along with Nginx and a few other programs. I've been able to tweak the memory usage of everything else without difficulty, but I can't seem to get ...
12
votes
4answers
530 views
Is message priority inherently unimportant in message queue systems?
It seems like most of the messaging systems I've looked at have basic, if any, support for priority message queues. For example, the AMQP only specifies a minimum of 2 priorities. RabbitMQ, an AMQP ...
11
votes
3answers
4k views
Rabbitmq or Gearman - choosing a jobs queue
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 ...
10
votes
8answers
472 views
Lightweight notification technique
I need to develop a realtime recent activity feed in django (with AJAX long-polling), and I'm wondering what's the best strategy for the server-side.
Pseudocode:
def recent_activity_post_save():
...
10
votes
6answers
3k views
Best PHP client library for accessing RabbitMQ (AMQP)?
There is a list of PHP clients on the RabbitMQ site. I'm asking this question in hopes that people who have used any of these can share their experiences here. E.g.
Did you have any trouble ...
9
votes
2answers
1k views
Switching from ActiveMQ to RabbitMQ
I'm currently using ActiveMQ for my messaging needs; aside from a few db failures, it has worked well. However, I'm at the very least considering trying out RabbitMQ. But before I do, I'd like to ...
8
votes
3answers
246 views
Dealing with duplication in a message queue
I've been arguing with my programmer about the best way of going about this. We have data that comes in at a rate of about 10000 objects per second. This needs to be processed asynchronously, but ...
8
votes
3answers
590 views
Has anyone compiled a rabbitmq/amqp library for php 5.2.x on windows x64
I'm trying to publish messages to RabbitMQ from a php (5.2.x) script on my windows X64 dev machine.
The problem is that I didn't find any dll extension for php. My collegue is actually trying to ...
8
votes
2answers
1k views
Using RabbitMQ (Java client), is there a way to determine if network connection is closed during consume?
I'm using RabbitMQ on RHEL 5.3 using the Java client. I have 2 nodes (machines). Node1 is consuming messages from a queue on Node2 using the Java helper class QueueingConsumer.
QueueingConsumer ...
7
votes
2answers
917 views
ZooKeeper and RabbitMQ/Qpid together - overkill or a good combination?
Greetings,
I'm evaluating some components for a multi-data center distributed system. We're going to be using message queues (via either RabbitMQ or Qpid) so agents can make asynchronous requests to ...
6
votes
1answer
254 views
Examples of Django and Celery: Periodic Tasks
I have been fighting the Django/Celery documentation for a while now and need some help.
I would like to be able to run Periodic Tasks using django-celery. I have seen around the internet (and the ...
6
votes
2answers
281 views
Book for Django + Celery + RabbitMQ?
OK, I have been reading about the celery and rabbitmq, while I appreciate the effort of the project and the documentation, I am still confused about a lot of things.
http://www.celeryproject.org/
...
6
votes
3answers
188 views
'Queueing' tutorials and documentation?
I'm looking for articles and references that give an overview of 'queueing' (I'm probably not even using the right term here). I'm hoping for an introductory styled guide through a world of Redis, ...
6
votes
2answers
3k views
AMQP/RabbitMQ or Node.js for live web applications?
I want to build a live application that supports server-push (chat, feeds, live notification and collaboration etc).
I have looked into Node.js and found it quite interesting and appropriate for such ...
6
votes
5answers
1k views
amqp or xmpp for real time online games
Which of these technology suite for Multi user online game project..
Project requirements:
1. Able to handle 2k-5k user at any given time.
2. client library for iphone and android (native, no ...
5
votes
1answer
181 views
Error Creating cluster in RabbitMQ on EC2
I want to create a cluster of RabbitMQ on EC2. I have created an AMI of Ubantu and install the rabbitmq-server-2.3.1 on it.
I have also installed the management plugins for GUI. For cluster purpose I ...
5
votes
1answer
60 views
What is the best way to safely end a java application with running RabbitMQ consumers
We have a standalone java application doing some background processing on a Debian machine. The jobs it has to handle are send through RabbitMQ messages.
When the java application needs to be ...
5
votes
5answers
2k views
RabbitMQ install issue on Centos 5.5
I've been trying to get rabbitmq-server-2.4.0 up and running on Centos
5.5 on an Amazon AWS instance.
My instance uses the following kernel: 2.6.18-xenU-ec2-v1.2
I've tried installation of erlang ...
5
votes
3answers
807 views
Why do we need to use rabbitmq
Why do we need RabbitMQ when we have a more powerful network framework in Python called Twisted. I am trying to understand the reason why someone would want to use RabbitMQ.
Could you please provide ...
5
votes
4answers
1k 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 ...
5
votes
2answers
469 views
RabbitMQ subscriber notification in .NET
We are using MSMQ right now with WCF activation feature, it enables us not to pull queue to read messages. It like push message to application.
As we are looking at porting from MSMQ to RabbitMQ ...
5
votes
1answer
769 views
How to make RabbitMQ queues failover?
RabbitMQ supports clustering by default, but queues aren't replicated and are bound to the node on which they're created. I'm now looking for ways to make RabbitMQ highly available other than the DRBD ...
5
votes
1answer
637 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 ...
5
votes
2answers
1k views
Simple scalable work/message queue with delay
I need to set up a job/message queue with the option to set a delay for the task so that it's not picked up immediately by a free worker, but after a certain time (can vary from task to task). I ...
5
votes
3answers
782 views
requeue a sweatshop job in RabbitMQ
I am working on a Rails application where customer refunds are handed to a Sweatshop worker. If a refund fails (because we cannot reach the payment processor at that time) I want to requeue the job.
...
4
votes
1answer
501 views
RabbitMQ / ActiveMQ or Redis for over 250,000 msg/s
Eventhough redis and message queueing software are usually used for different purposes, I would like to ask pros and cons of using redis for the following use case:
group of event collectors write ...
4
votes
3answers
283 views
RabbitMQ on EC2 performance challenges
What could be performance expectations of RabbitMQ on EC2? Would appreciate sharing experience here.
I am trying to do some performance test of RabbitMQ on aws EC2. I have 3 separate EC2 instance ...
4
votes
2answers
450 views
Are there any good alternatives to RabbitMQ for low-end setups?
I've been using RabbitMQ in a few setups now, and I can't shake the feeling that there must be something that's more easily set up. Despite it's conveniences it's hard to justify MQ for a solution ...
4
votes
4answers
306 views
Alternatives to RabbitMQ for .NET centric shop?
I need a reliable messaging solution. It looks like RabbitMQ would address the needs of my application. However, my environment is not well suited to deploying Erlang and Mnesia on a server. It is ...
4
votes
2answers
248 views
offline web application design recommendation
I want to know which is the best architecture to adopt for this case :
I have many shops that connect to a web application developed using Ruby on Rails.
internet is not reachable all the time
The ...
4
votes
1answer
504 views
Using RabbitMQ is there a way to look at the queue contents without a dequeue?
As a way to learn RabbitMQ and python I'm working on a project that allows me to distribute h264 encodes between a number of computers. The basics are done, I have a daemon that runs on Linux or Mac ...
4
votes
2answers
2k views
Using Tornado with Pika for Asynchronous Queue Monitoring
I have an AMQP server (RabbitMQ) that I would like to both publish and read from in a Tornado web server. To do this, I figured I would use an asynchronous amqp python library; in particular Pika (a ...
4
votes
2answers
2k views
Swapping out MSMQ for RabbitMQ in NServiceBus
Udi mentions here that "people have swapped out the MSMQ layer of NServiceBus and plugged in RabbitMQ in its place".
I'm looking to do the same thing with the end goal of being able to run an app ...
4
votes
2answers
480 views
Celery doesn't return results
For some reason, whenever I create and run a new Task in Celery there is a problem with returning the results. The first task returns perfectly, but for all subsequent tasks, the result is always ...
4
votes
1answer
1k views
How do you compile a PHP extension on windows with cygwin/mingw?
I am trying to build the RabbitMQ PHP wrapper and the AMPQ PHP wrapper on Windows (64) using Cygwin.
I have successfully built the underlying C library (librabbitmq.dll) but I am stuck at the 'phpize' ...
4
votes
4answers
867 views
RabbitMQ message consumers stop consuming messages
Our team is in a spike sprint to choose between ActiveMQ or RabbitMQ. We made 2 little producer/consumer spikes sending an object message with an array of 16 strings, a timestamp, and 2 integers. The ...
4
votes
2answers
2k views
How does RabbitMQ compare to Mule
How does RabbitMQ compare to Mule, I am going to build an application using message oriented architecture and AMQP (RabbitMQ) provides everything i want, but i am perplexed with so many related ...
4
votes
3answers
2k views
MongoDB Schema Design - Real-time Chat
I'm starting a project which I think will be particularly suited to MongoDB due to the speed and scalability it affords.
The module I'm currently interested in is to do with real-time chat. If I was ...
4
votes
1answer
389 views
AMQP subscriber inside Rails app
Is it possible to start an AMQP subscriber with my Rails app? Possibly through an initializer or something.
I'd like to have it running at the same time that can also interact with Rails models. ...
4
votes
3answers
3k 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 ...
4
votes
3answers
2k 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?
I'm using the .NET client library.
3
votes
1answer
97 views
RabbitMQ - Statistics database could not be contacted. Message rates and queue lengths will not be shown
I have setup a cluster of rabbit brokers and within the management portal plugin I get the following message
"Statistics database could not be contacted. Message rates and queue lengths will not be ...
3
votes
1answer
493 views
Using Redis for Pub Sub . Advantages / Disadvantages over RabbitMQ
Our requirement is very simple. Send messages to users subscribed to a topic. We need our messaging system to be able to support millions of topics and maybe millions of subscribers to any given topic ...
3
votes
3answers
299 views
Can't compile Erlang R14B03 when trying install RabbitMQ using Homebrew on Mac OS X
I am developing a django app and it will utilize the Celery notification system. To use Celery I need the install the RabbitMQ server. I am trying to install it using homebrew. So I just:
sudo brew ...
3
votes
1answer
186 views
Interoperating with Django/Celery From Java
Our company has a Python based web site and some Python based worker nodes which communicate via Django/Celery and RabbitMQ. I have a Java based application which needs to submit tasks to the Celery ...
3
votes
1answer
221 views
Can't get any release to start?
So, I thought I'd create a bonafide release to run my next application in. Unfortunately, there seems to be a deal breaker.
First I tried making a project from scratch using this guide:
...
3
votes
4answers
873 views
RabbitMQ vs Socket.io?
I'm doing real time live web app development.
Browser users should be able to communicate with eachother through a node.js server. One of the user writes a message and all other users will get it.
I ...