Routing AMQP: The Qpid Dispatch Router Project
Looking at the Apache Qpid Dispatch Router Project, and how it fits into the world of message-oriented middleware and the AMQP protocol.
Join the DZone community and get the full member experience.
Join For FreeRegarding the AMQP (Advanced Message Queuing Protocol) protocol, a lot of people think that it’s only about messaging between clients and brokers. There is a lot of MOM (Message Oriented Middleware) that supports this protocol to enable clients to send and receive messages to exchange data to each other. We can think about open source projects like Apache ActiveMQ and Apache ActiveMQ Artemis brokers, or commercial products from big companies like JBoss A-MQ (Red Hat), Azure Service Bus (Microsoft), and MQ Light (IBM).
Not all people know that AMQP is also a peer-to-peer protocol which enables clients to communicate with each other without a messaging broker in the middle. Furthermore, we can use this protocol in order to connect clients to a server. More generally speaking, an AMQP endpoint can be a “pure” client (which starts a connection) or a server (which listens for connections).
The Typical MOM Features
An AMQP server seems to be exactly what a broker is, but that's not so true. Of course, a broker listens for connection requests from clients, so it acts as a server, but it’s MOM and adds a bunch of capabilities. First of all, it provides a “store and forward” capability because every message received from a producer is stored in a queue or a topic/subscription entity, and after that it’s ready to be delivered to consumers which get messages at their own pace. It provides asynchronous communication between them, decoupling senders and receivers, and the messages can be stored in memory or in permanent storage (like a database or a log file).
What does it mean in terms of message acknowledgement having a queue or topic/subscription between a producer and a consumer? Basically, it means that the producer knows when the message is arrived to the broker, but not when it’s consumed by the consumer (it could be offline or it’s consuming messages at a different pace). In order to have this information, it needs to set up a “reply to” queue where the consumer can send an acknowledge message for the producer. In this case, the consumer knows that the acknowledge message has arrived to the broker but not to the producer yet.
Of course, it’s the typical scenario in the “integration business” where different enterprise systems exchange data in such a way. It’s also true that in the new “Internet of Things business”, the devices in the field and the services in the cloud communicate in that way for telemetry and command/control purposes.
Sometimes this kind of communication isn’t acceptable and the producer wants to know exactly when the message has arrived at its destination (consumer) without another entity in the middle, the broker, which takes responsibility for message delivery. Furthermore, there are other patterns that aren’t possible using only brokers.
Qpid Dispatch Router: What Is This?
In order to add more and different features in an integration and/or IoT scenario made of clients, servers, and brokers, the Apache Foundation developed a new interesting project under the Qpid umbrella: the Qpid Dispatch Router.
As the official documentation says, “The router is an intermediary for messages but it is not a broker. It does not take responsibility for messages”. When a producer sends a message to a broker, it takes responsibility for it and will deliver the message itself when a consumer will ask for it. The router simply propagates the AMQP traffic between nodes and it means that if producer and consumer are directly connected (in a peer to peer fashion) through the router, they are the only ones responsible for message acknowledgement.
Other than in “stand-alone” mode, the best configuration for using a router is in a “network of routers”; so let’s consider more routers connected each other in a specific topology. Clients can connect on that network asking to send/receive a specific AMQP addresses and communicate through routers that choose the best path for message delivery (algorithms similar to OSPF or IS-IS from the networking world are used). It’s possible thanks to their internal “routing tables” which are constantly updated using a specific router protocol. All the routers exchanges updating/hello messages about when a new router connected (or about a router that went offline) and new clients attached/detached to specific addresses. In that way, the network can change dynamically in terms of router connections and paths between clients for sending/receiving messages on different/new addresses.
Of course, a network of routers is also useful for connecting to one or more brokers/servers. Thanks to routers, a broker/server could handle a few TCP connections in order to communicate with a huge number of clients. It’s possible because we can use a few routers directly connected to the broker/server and have a lot of clients connected to those routers (that could be part of a huge network). These clients aren’t directly connected to the broker/server but can communicate with it through the routers, it determines a reduction of connections from clients to a broker/server.
Another great advantage is to expose a server/broker outside of a private network. Without routers, in the above scenario we need to enable port traversal from outside our NAT firewall to allow external clients to connect to a server/broker inside the LAN. It means enabling incoming connections, which is not good due to security concerns. Using a router inside the private network, it’s able to connect to the server/broker (they are on the same LAN) and to connect to an external router (outside the LAN). That way, we don’t need to open any ports on a NAT firewall. Instead, we have an outgoing connection from the router inside the LAN. All clients can connect to the external router and have their traffic routed to the server/broker into the private network leveraging a connection between the routers.
Conclusion
Using AMQP routing could be considered a “different” way to do messaging or as a new possibility for adding features and patterns to the typical MOM scenarios. In the next article we’ll dig into it with some examples starting from a simple stand-alone router to a network of routers. We’ll also see the available configurations for enabling client/server/broker communication through them.
Published at DZone with permission of Paolo Patierno, DZone MVB. See the original article here.
Opinions expressed by DZone contributors are their own.
Trending
-
Auditing Tools for Kubernetes
-
Extending Java APIs: Add Missing Features Without the Hassle
-
Comparing Cloud Hosting vs. Self Hosting
-
Competing Consumers With Spring Boot and Hazelcast
Comments