Page Inspect
Internal Links
30
External Links
12
Images
2
Headings
13
Page Content
Title:RabbitMQ: One broker to queue them all | RabbitMQ
Description:
HTML Size:27 KB
Markdown Size:6 KB
Fetched At:November 17, 2025
Page Structure
h1RabbitMQ
h2Free and Open Source
h2Commercial offering
h1Why RabbitMQ?
h2Interoperable
h2Flexible
h2Reliable
h1Examples of common use cases
h2Decoupling interconnected services
h2Remote Procedure Call
h2Streaming
h2IoT
h1What are users saying?
Markdown Content
RabbitMQ: One broker to queue them all | RabbitMQ Skip to main content RabbitMQ is developed by **VMware Tanzu**. Get 24/7 enterprise support backed by the core engineering team. Getting StartedDocsBlogSupportCommercial Features 4.2 - **Release series** - Next - 4.2 - 4.1 - 4.0 - 3.13 GitHub Search # RabbitMQ One broker to queue them all Getting StartedRabbitMQ 4.2.0 RabbitMQ is Free and Open Source Software. In addition, Broadcom offers an enterprise grade commercial offering with 24/7 expert support. ## Free and Open Source RabbitMQ is a powerful, enterprise grade open source messaging and streaming broker that enables efficient, reliable and versatile communication for applications — perfect for distributed microservices, real-time data, and IoT. Free under the Mozilla Public License 2.0, it has a vibrant global community. Dive in with our easy-to-use docs or contribute to shape its future! ## Commercial offering If you’re running mission-critical apps, Tanzu RabbitMQ’s enterprise-grade version is essential. It ensures your apps stay reliable and secure with 24/7 expert support from the engineers who make the product, longer lifecycle, disaster recovery, cloud cost savings, and industry compliance. See our commercial features and support timelines. Contact Us Find a Partner # Why RabbitMQ? RabbitMQ is a reliable and mature messaging and streaming broker, which is easy to deploy on cloud environments, on-premises, and on your local machine. It is currently used by millions worldwide. ## Interoperable RabbitMQ supports several open standard protocols, including AMQP 1.0 and MQTT 5.0. There are multiple client libraries available, which can be used with your programming language of choice, just pick one. No vendor lock-in! ## Flexible RabbitMQ provides many options you can combine to define how your messages go from the publisher to one or many consumers. Routing, filtering, streaming, federation, and so on, you name it. ## Reliable With the ability to acknowledge message delivery and to replicate messages across a cluster, you can ensure your messages are safe with RabbitMQ. # Examples of common use cases Here are a few common use cases we hear about from the community or our customers. This should help you better understand what RabbitMQ is and how it can help. - Decoupling services - RPC - Streaming - IoT ## Decoupling interconnected services You have a backend service that needs to send notifications to end users. There are two notification channels: emails and push notifications for the mobile application. The backend publishes the notification to two queues, one for each channel. Programs that manage emails and push notification subscribe to the queue they are interested in and handle notifications as soon as they arrive. **➡ Benefits** - RabbitMQ absorbs the load spike. - You can do some maintenance on the notification managers without interrupting the whole service. ## Remote Procedure Call You own a concert hall. Tickets for the shows are sold on multiple websites and physical kiosks. Orders from all channels must go through a complex process to determine if a customer effectively get their tickets, depending on availability. The website or kiosk expect to get an answer for the order in minimal time. Orders are published to a queue in RabbitMQ with a correlation ID. The caller that pushed the order then subscribes to another queue and waits for an answer with that same correlation ID. To achieve low latency, a classic queue is a good fit here but it is at the expense of less safety — the caller can still retry. If the order cannot be lost, you might prefer to use a combination of acknowledgments and quorum queues to ensure a message is safe once confirmed. This topology allows the processing of orders to be serialized to serve them in a first come first served order. This avoids the need for transactions. **➡ Benefits** - A RabbitMQ client can be a publisher and a consumer at the same time. - RabbitMQ can be used to dispatch RPC calls. ## Streaming You run a video platform. When a user uploads a new video, you have multiple tasks to complete when the video is safely stored: run some post-upload analysis, transcode lower quality copies of the video, notify other users subscribed to the author's creations, and so on. The upload service appends “New video” events to a RabbitMQ stream. Multiple backend applications can subscribe to that stream and read new events independently of each other. Users must be notified right away, but the post-upload analysis can wait and run once a day. **➡ Benefits** - Streams are very efficient and avoids the need to duplicate messages. - A consumers can go back and forth in the stream even if there are concurrent consumers. ## IoT You provide package delivery services across the entire galaxy. You have a swarm of space drones that need to report their status on a regular basis to a server hosted on exoplanet *Kepler-438 b*. Unfortunately, the network connectivity is not great… Each space drone runs a local RabbitMQ standalone node that buffers their report until a connection is possible with the upstream RabbitMQ. When planets are aligned, the drone's RabbitMQ shovels all reports to the upstream RabbitMQ. **➡ Benefits** - RabbitMQ deployments can be chained to cater for different needs in your service, using features such as shovels and federation. - MQTT is well suited for millions of concurrent connections. # What are users saying? RabbitMQ is used by millions around the world. Here is what some of our users are saying about it! > RabbitMQ is the one message broker that HASN'T given me grief in my career. — *codeduck* on Hacker News > I've been running RabbitMQ for >8 years in production, once even in a fleet of 180 buses where every bus had an instance of rabbitmq running locally. Never had a single issue in all those years. — *gog* on Hacker News Learn about RabbitMQ - Getting Started - Documentation - Blog Reach out to the RabbitMQ team - GitHub - GitHub Discussions - Long Term Commercial Support - Contact Us - Discord Broadcom - VMware Tanzu - Terms of Use - Privacy - Trademark Guidelines - Your California Privacy Rights - Cookie Settings Copyright © 2005-2025 Broadcom. All Rights Reserved. The term "Broadcom" refers to Broadcom Inc. and/or its subsidiaries.