Menu

What can RabbitMQ do for you?

Messaging enables software applications to connect and scale. Applications can connect to each other, as components of a larger application, or to user devices and data. Messaging is asynchronous, decoupling applications by separating sending and receiving data.

You may be thinking of data delivery, non-blocking operations or push notifications. Or you want to use publish / subscribe, asynchronous processing, or work queues. All these are patterns, and they form part of messaging.

RabbitMQ is a messaging broker - an intermediary for messaging. It gives your applications a common platform to send and receive messages, and your messages a safe place to live until received.

Feature Highlights

Reliability

RabbitMQ offers a variety of features to let you trade off performance with reliability, including persistence, delivery acknowledgements, publisher confirms, and high availability.

Flexible Routing

Messages are routed through exchanges before arriving at queues. RabbitMQ features several built-in exchange types for typical routing logic. For more complex routing you can bind exchanges together or even write your own exchange type as a plugin.

Clustering

Several RabbitMQ servers on a local network can be clustered together, forming a single logical broker.

Federation

For servers that need to be more loosely and unreliably connected than clustering allows, RabbitMQ offers a federation model.

Highly Available Queues

RabbitMQ supports replicated queues and streams. machines in a cluster, ensuring that even in the event of hardware failure, messages are safe as long as there is a majority of cluster nodes online.

Multi-protocol

RabbitMQ supports messaging over a variety of messaging protocols.

Many Clients

There are RabbitMQ clients for almost any language you can think of.

Management UI

RabbitMQ ships with an easy-to use management UI that allows you to monitor and control every aspect of your message broker.

Tracing

If your messaging system is misbehaving, RabbitMQ offers tracing support to let you find out what's going on.

Plugin System

RabbitMQ ships with a variety of plugins extending it in different ways, and you can also write your own.

And Also...

Commercial Support

Commercial support, training and consulting are available from VMware.

Large Community

There's a large community around RabbitMQ, producing all sorts of clients, plugins, guides, etc. Join our mailing list to get involved!

Getting Help and Providing Feedback

If you have questions about the contents of this guide or any other topic related to RabbitMQ, don't hesitate to ask them using GitHub Discussions or our community Discord server.

Help Us Improve the Docs <3

If you'd like to contribute an improvement to the site, its source is available on GitHub. Simply fork the repository and submit a pull request. Thank you!

In This Section