RabbitMQ


RabbitMQ is an open-source message-broker software that originally implemented the Advanced Message Queuing Protocol and has since been extended with a plug-in architecture to support Streaming Text Oriented Messaging Protocol, MQ Telemetry Transport, and other protocols.
The RabbitMQ server program is written in the Erlang programming language and is built on the Open Telecom Platform framework for clustering and failover. Client libraries to interface with the broker are available for all major programming languages.

History

Rabbit Technologies Ltd. originally developed RabbitMQ.
Rabbit Technologies started as a joint venture between LShift and CohesiveFT in 2007, and was acquired in April 2010 by SpringSource, a division of VMware.
The project became part of Pivotal Software in May 2013.
The source code is released under the Mozilla Public License.
The project consists of:
This section gives sample programs written in Python for sending and receiving messages using a queue.

Sending

The following code fragment establishes a connection, makes sure the recipient queue exists, then sends a message and finally closes the connection.

  1. !/usr/bin/env python
import pika
connection = pika.BlockingConnection
channel = connection.channel
channel.queue_declare
channel.basic_publish
print
connection.close

Receiving

Similarly, the following program receives messages from the queue and prints them on the screen:

  1. !/usr/bin/env python
import pika
connection = pika.BlockingConnection
channel = connection.channel
channel.queue_declare
print
def callback:
print
channel.basic_consume
channel.start_consuming