Tagged Questions

AMQP is a open messaging standard. It defines a wire-level protocol and semantic framework for high performance enterprise messaging. Unlike API-only standards like JMS, AMQP enables complete interoperability for messaging middleware; both the networking protocol and the semantics of broker services are defined in AMQP.

learn more… | top users | synonyms

22
votes
4answers
5k views

In which domains are message oriented middleware like AMQP useful?

What problem do MOM (Message Oriented Middleware) solve? Scalability? Integration? In which domain are they typically used and in which domains are they typically not used? For example, say, is ...
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
4answers
532 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 ...
12
votes
6answers
5k 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 ...
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
2answers
224 views

AMQP creating subscribing to queues dynamically

I am trying to build a simple chat application using AMQP, Websockets and Ruby. I understand that this may not be the best use-case to understand AMQP but I would like to understand where i am going ...
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 ...
8
votes
5answers
3k views

Low-latency, large-scale message queuing

I'm going through a bit of a re-think of large-scale multiplayer games in the age of Facebook applications and cloud computing. Suppose I were to build something on top of existing open protocols, ...
8
votes
6answers
1k 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 ...
7
votes
1answer
398 views

Adding REST behavior to a class with flask, case for blueprints?

I am dealing with a python application that consists of multiple distributed lightweight components that communicate using RabbitMQ & Kombu. A component listens on two queues and can receive ...
7
votes
1answer
1k views

Java JMS Messaging

I have a working example of sending message to server and server receiving it via qpid messaging. Here is simple hello world to send to server : http://pastebin.com/M7mSECJn And here is server which ...
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
2answers
458 views

Is AMQP production ready?

I'd like to use AMQP to join two services one written in C# and other written in python. I'm expecting quite large volume of messages per second. Is there any AMQP Broker that is production ready? ...
5
votes
1answer
775 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
2answers
487 views

AMQP + Android libraries

Is any amqp libraries for Android?
5
votes
5answers
1k 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 ...
4
votes
2answers
451 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
1answer
226 views

Looking for a compiled Python AMQP library

We're creating a high-throughput AMQP client using Qpid as the broker, and we are getting nowhere near the throughput reported in other places. (We're receiving under 250 msg/s, while this blog post ...
4
votes
1answer
505 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
1answer
432 views

Apache qpid queue url

I'm trying to learn more information on how apache Qpid works and I do so by following examples from official svn : http://svn.apache.org/repos/asf I was looking at : ...
4
votes
2answers
190 views

Looking for a book on queue-based applications

I'm looking for a good book on building messaging and queue based applications. Good practices, design patterns etc. for things like twitter feeds, publish and subscribe feeds, AMQP, rabbitMQ etc.
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
869 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
1answer
1k views

DDS vs AMQP vs ZeroMQ

I wanted a feedback on whether my evaluations and concerns are correct. I have been reseaching the three, Data Distribution Service, AMQP and ZeroMQ for sometime now for building a data transport ...
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
1answer
805 views

What is the “delivery mode” in AMQP?

I understand that 2 options are available: "Non-persistent" "Persistent" But what does this actually mean? "Non-persistent" as in : the AMQP fabric will try to deliver the message if there are ...
4
votes
1answer
780 views

How can I set up Celery to call a custom initialization function before running my tasks?

I have a Django project and I'm trying to use Celery to submit tasks for background processing ( http://ask.github.com/celery/introduction.html ). Celery integrates well with Django and I've been able ...
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
42 views

Tunnelling AMQP over HTTP?

Are there any standard libraries or packages (preferably python-oriented) for providing HTTP gateways to AMQP-based applications? For e.g. I have a an application which uses AMQP for communication ...
3
votes
4answers
876 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 ...
3
votes
1answer
38 views

Network Level Caching

We are building a test client to do some load/failover testing for Apache Qpid. My admin counterparts told me that I should randomize the bytes in the message payload. Their reasoning for this is ...
3
votes
2answers
277 views

Use of messaging like RabbitMQ in web application?

I would like to learn what are the scenarios/usecases/ where messaging like RabbitMQ can help consumer web applications. Are there any specific resources to learn from? What web applications ...
3
votes
1answer
232 views

Subscribe to a queue, receive 1 message, and then unsubscribe

I have a scenario where I need to distribute and process jobs extremely quickly. I'll have about 45 jobs populated in the queue quickly and I can process about 20 simultaneously (5 machines, 4 cores ...
3
votes
1answer
678 views

How can I use Pika to send and receive RabbitMQ messages?

I'm having some issue getting Pika to work with routing keys or exchanges in a way that's consistent with it AMQP or RabbitMQ documentation. I understand that the RabbitMQ documentation uses an older ...
3
votes
4answers
1k views

Good Python library for AMQP

Can you recommend what Python library to use for accessing AMQP (RabbitMQ)? From my research pika seems to be the preferred one.
3
votes
1answer
445 views

Ruby EventMachine + AMQP: Ensuring specific async calls happen before raising exceptions

We're building an AMQP-backed messaging system in Ruby. We have a problem with error handling however. We maintain a whitelist of exceptions, which are safe, and the message in RabbitMQ can be left ...
3
votes
2answers
362 views

Has anyone succeeded in using celery with pylons

I have a pylons based webapp and i'd love to use celery + rabbitmq for some time taking tasks. I've taken a look at the celery-pylons project but I haven't succeeded in using it. My main problem with ...
3
votes
3answers
507 views

How to retract a message in RabbitMQ?

I've got something like a job queue over RabbitMQ and, upon a request to cancel a job, I'd like to retract the tasks that have not yet started processing (their messages have not been ack'd), which ...
3
votes
3answers
597 views

Pre-built AMQP and STOMP client (as in GUI client)

I'm looking for a client (as in GUI client, not client library) to play with our MQ server and familiarize myself with its semantics. Something that will send and receive messages at the press of a ...
3
votes
2answers
545 views

Content-based routing with RabbitMQ and Python

Is it possible with RabbitMQ and Python to do content-based routing? The AMQP standard and RabbitMQ claims to support content-based routing, but are there any libraries for Python which support ...
3
votes
2answers
990 views

Apache Camel ESB for C# and Java EDA

We are looking at integrating some of our coarse grained business Services using an Event Driven Architecture (EDA) and the server side of these Services (REST) are implemented in both Java and .NET ...
3
votes
1answer
624 views

erlang AMQP client library

Is there an Erlang AMQP client library that isn't tied to the hip with RabbitMQ ? I know about http://hg.rabbitmq.com/rabbitmq-erlang-client/ but I would like something more decoupled... pain when ...
3
votes
3answers
1k views

AMQP C++ implementation

We are writing C++ code which needs messaging. Is there a free/open-source and stable AMQP server available that has equally stable C++ client library with it. We also need to provide Python interface ...
3
votes
2answers
857 views

Retrieve messages from RabbitMQ queue(s)

I'm looking to implement RabbitMQ into my PHP application, and am using the php-amqp extension. My only question is this, how do I easily query to return the contents of the queue in PHP? php-amqp ...
3
votes
1answer
1k 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 ...

1 2 3 4 5