Using AMQP with Node-RED

Step-by-Step Guide to Enhancing Reliable Messaging in Node-RED with AMQP

Back to Blog Posts
Image representing null

Imagine your Node-RED flow working well, handling data from different sources, until suddenly, messages start disappearing or arriving out of order. MQTT works fine for basic messaging, but it can struggle in more complex situations where you need delivery guarantees and advanced routing.

That’s where AMQP comes in. AMQP solves these issues with features that MQTT doesn’t have. In this guide, we'll explain what AMQP is and how to use it with Node-RED.

What is AMQP

AMQP, or Advanced Message Queuing Protocol, is a set of rules for managing messages between systems. It ensures that messages are sent and received reliably, even if there are network issues. AMQP uses message queues to store messages until they can be processed, making sure they are delivered in the correct order. It supports various messaging patterns, such as one-to-one or one-to-many. In short, AMQP helps different systems communicate with each other effectively and consistently.

At the heart of AMQP is the Message Broker, which acts as the central hub for managing and routing messages. Producers, the systems or applications that create and send messages, send their data to the broker.

The broker uses Exchanges to determine how to route these messages. There are several types of exchanges:

  • Direct Exchange (point-to-point): Routes messages to specific queues based on an exact match with the routing key. For example, if a message has a routing key of "error," it will only go to queues set up to receive messages with that key.
  • Topic Exchange (publish-subscribe): Routes messages to queues based on patterns in the routing key. This allows messages to be sent to multiple queues based on partial matches or wildcard patterns. For instance, a routing key of "logs.error" could match queues set up to handle "logs.*" or "logs.error".
  • Fanout Exchange: Broadcast messages to all queues bound to it without considering the routing key. Every queue connected to this exchange receives a copy of the message.
  • Headers Exchange (publish-subscribe): Routes messages based on attributes in the message headers instead of the routing key. For example, messages with specific header attributes can be directed to particular queues.

Messages are placed in Queues, where they are stored until they are processed. Queues ensure that messages are delivered in the correct order and are kept until they are successfully handled.

Finally, Consumers are systems or applications that retrieve and process messages from the queues. They perform actions based on the messages they receive. AMQP uses acknowledgments to confirm that messages have been processed before removing them from the queues, ensuring reliable message handling.

Using AMQP with Node-RED

In this section, we will guide you through integrating AMQP with Node-RED. The guide will cover setting up AMQP in Node-RED, configuring various exchange types, and incorporating them into your flows. You will learn how to send and receive messages based on different exchange methods. To effectively demonstrate these concepts, we will use a variety of scenarios and examples.

Prequiste

  • AMQP Supported Broker Server: Ensure you have a running AMQP-supported broker server. For this guide, we are using RabbitMQ.
  • Node-RED AMQP Node: Install the AMQP contrib node via Node-RED palette manager.

Understanding AMQP Node configuration settings.

AMQP Broker

  • Host: Specify the hostname or IP address where your AMQP broker is located. This tells your node where to connect.
  • Port: This is the network port the AMQP broker communicates with. The default port for AMQP is 5672, but it might differ if configured otherwise.
  • vhost: Virtual hosts segregate different environments or applications within the same broker instance. The default is /, but you might have specific virtual hosts for various use cases.
  • Use TLS: Enable TLS/SSL if the broker requires encrypted communication to ensure data security during transmission.
  • User: The username required for authentication with the broker. RabbitMQ, for example, defaults to guest.
  • Password: The password associated with the username for authentication. RabbitMQ’s default is guest.

Configure the node by dragging an AMQP node onto the canvas. Double-click the node, then click the "+" icon next to the pencil icon. In the prompt that opens, enter the details of your broker server. For added security, ensure you use environment variables to configure nodes. For more information, refer to Using Environment Variables in Node-RED.

AMQP Out

  • Broker Select the broker configuration you’ve set up using the AMQP Broker node. This links your outgoing messages to the correct broker instance.
  • Reconnect On Error: Determines whether the node should attempt to reconnect automatically if it encounters an error. This helps maintain communication with the broker even if temporary issues occur.
  • Exchange Configuration
    • Type: Choose the exchange type that dictates how messages are routed such as fanout, direct, topic and headers:
    • Exchange Name: Name of the exchange where messages will be published. This is where the message is sent before being routed to the appropriate queue.
    • Routing Key: This key is Used to direct messages to the correct queues based on the exchange type. It helps specify which queue should receive the message.
    • Durable: Specifies whether the exchange should survive broker restarts. A durable exchange retains its messages through broker restarts.
  • Message Properties
    • AMQP Properties: Allows setting additional properties such as priority, expiration, or delivery mode for messages, influencing their handling and delivery.
  • Remote Procedure Call (RPC) Settings
    • Request RPC Response: Configure whether to request a response for RPC calls:
      • YES: Request a response from the server.
      • NO: Do not request a response.
    • RPC Timeout (ms): Set the timeout for waiting for an RPC response in milliseconds.

AMQP In

  • Broker: Use the broker configuration details provided by the AMQP Broker node to ensure incoming messages are received from the correct broker.
  • Prefetch: Determines the number of messages to fetch from the broker in advance. Reducing the number of times the broker needs to send messages can help with performance.
  • Reconnect On Error: Configure whether the node should automatically reconnect if it encounters an error. This helps maintain a continuous flow of data.
  • noAck: When enabled, the node will automatically acknowledge messages as soon as they are received. This can be useful for ensuring messages are processed but might lead to message loss if the node fails to process the message correctly.
  • Exchange Configuration
    • Type: Select the exchange type used to route incoming messages:
      • Topic
      • Direct
      • Fanout
      • Headers
    • Exchange Name: The exchange name from which messages are routed. This helps direct incoming messages to the appropriate queue.
    • Routing Key: Specifies how to route messages from the exchange to the correct queue(s). This is essential for ensuring messages are received by the proper consumers.
    • Headers: Set specific headers to filter messages according to routing criteria when the headers exchange type is selected.
    • Durable: Indicates whether the exchange should survive broker restarts.
  • Queue Info
    • Queue Name: Name of the queue where messages are received. This is the storage location for messages before they are processed. Leave it blank if you want it to be generated automatically.
    • Exclusive: If set to true, the queue is exclusive to the connection and will be deleted when the connection closes.
    • Durable: Whether the queue should survive broker restarts, retaining messages until they are consumed.
    • Auto Delete: Determines whether the queue should be deleted automatically when it is no longer in use, helping to manage resources efficiently.

Direct Exchange

Scenario: You have a smart irrigation system with multiple zones. You want to send commands to specific zones, such as turning irrigation on or off.

Sending Data using Direct Exchange

  1. Drag two inject nodes on to the canvas. Configure the first inject node to send data with a msg.routingKey of "zone1" and the second with a msg.routingKey of "zone2". Set the payload for each inject node you want to send to zones.
  2. Add an amqp-out node. Set the exchange to irrigation_control, where the commands will be sent.
  3. Connect the inject nodes to the amqp-out node.

Receiving Data using Direct Exchange

  1. Add two amqp-in nodes on to the canvas. Configure one to listen for messages with the routingKey of "zone1" and the other with "zone2". Both nodes should be set to the "irrigation_control" exchange.
  2. Connect each amqp-in node to a debug node to see the received commands for each zone.

Image showing the flow that uses the Direct exchange type to send messages and receive messages Image showing the flow that uses the Direct exchange type to send messages and receive messages

We configured a Direct type exchange in Node-RED to route messages to specific queues based on the routing key. We demonstrated how to send and receive commands in a smart irrigation system, ensuring that messages for different zones are delivered correctly. This setup is proper when you need precise message delivery based on an exact match with the routing key.

Topic Exchange

Scenario: You have a smart weather station that collects data from multiple sensors, such as temperature, humidity, and air quality. You want to publish and handle data based on the type of sensor and data, such as all temperature or humidity sensor data. You can use topic exchange, which allows you to use wild cards.

Sending Data using Topic Exchange

  1. Drag multiple inject nodes onto the canvas. Configure these nodes to send payloads representing temperature data. Set the msg.routingKey to values like temperature.sensor1, temperature.sensor2, etc.
  2. Similarly, add inject nodes for humidity sensor data. Set the msg.routingKey for these nodes to humidity.sensor1, humidity.sensor2, etc.
  3. Drag an amqp-out node onto the canvas. Set the exchange type to "Topic" and specify the exchange name as "weather_data".
  4. Connect each inject node to the amqp-out node. This setup ensures that each inject node sends its data to the weather_data exchange with the corresponding routing key.

Receiving Data using Topic Exchange

  1. Add two amqp-in nodes on to the canvas. Configure one to listen for messages with the routingKey of "temperature.*" and the other with "humidity.*". Both nodes should be set to the "weather_data" exchange.
  2. Connect each amqp-in node to a debug node to view the sensor data received.

Image showing the flow that uses the Topic exchange type to send messages and receive messages. Image showing the flow that uses the Topic exchange type to send messages and receive messages

We explored the Topic type exchange, which allows for more flexible routing using wildcard patterns in the routing key. The example involved a smart weather station where data from various sensors is published and handled based on sensor types. This setup is ideal for situations where you need to route messages based on partial matches or patterns, offering more granular control over message delivery.

Fanout Exchange

Scenario: You have a smart home system with various components, such as lights, thermostats, and security cameras, and you want to broadcast status updates to all components simultaneously.

Sending Data using Fanout Exchange

  1. Drag some inject nodes onto the canvas and set the payload for each. These inject nodes will act as the components sending updates such as lights, thermostats, etc
  2. Drag the mqtt-out node onto the canvas, Set the exchange type to "Fanout" and specify the exchange name as "system_updates"
  3. Connect each inject node to the amqp-out node. This setup ensures that each status update payload is sent to the "system_updates" exchange, broadcasting to all subscribed components.

Receiving Data from Fanout Exchange

  1. Drag amqp-in nodes onto the canvas. Configure one to listen for messages from the "weather_data" exchange.
  2. Connect the amqp-in node to a debug node to see the update received from all your components' data.

Image showing the flow that uses the Fanout exchange type to send messages and receive messages. Image showing the flow that uses the Fanout exchange type to send and receive messages.

We used a Fanout type exchange to broadcast messages to all queues connected to the exchange. We illustrated this with a smart home system where status updates from different components are sent to all devices simultaneously. This type of exchange is perfect for scenarios where you need to send the same message to multiple recipients without concern for routing keys.

Headers Exchange

Scenario: Suppose you have different machines in a factory sending data about their operational status, such as whether they are running, idle, or experiencing an error. You want to route messages based on machine type, operational status, and priority level. Has two components in your monitoring system: one that receives updates from only the CNC machine with the status of error and priority high and another that receives updates from all of the machines with the idle status and high priority.

Sending Data from Headers Exchange

  1. Drag two inject nodes on to the canvas. Configure the first inject node to send data with a msg.properties of {"headers":{"machine-type": "CNC," "status": "error," "priority": "high"}} and the second with a msg.properties of {"headers":{"machine-type": "A," "status": "idle," "priority": "high"}}. set the payload for each of the inject node you want to send.

  2. Drag the amqp-out node onto the canvas, Set the exchange type to headers, and specify the exchange name as system_update.

Receiving Data from Headers Exchange

  1. Drag two amqp-in nodes on to the canvas. Configure one to listen for messages with the headers of { "x-match": "all," "machine-type": "CNC," "status": "error," "priority": "high"} and the other with { "x-match": "any," machine-type": "A," "status": "idle," "priority": "high"}. Both nodes should be set to the system_update exchange.
  2. Connect each amqp-in node to a debug node to see the updates received for each component.

"Image showing the flow that uses the Headers exchange type to send messages and receive messages." Image showing the flow that uses the Headers exchange type to send messages and receive messages

Finally, we configured a Headers type exchange, which routes messages based on attributes in the message headers. The example focused on a factory monitoring system, where updates from machines are routed based on criteria like machine type, status, and priority. This exchange type is powerful for complex routing scenarios where decisions are based on multiple attributes rather than just the routing key.

Conclusion

In this guide, we delved into the fundamentals of AMQP and its integration with Node-RED. We explored how to set up AMQP nodes, configure various exchange types (Direct, Topic, Fanout, and Headers), and apply them to real-world scenarios. This approach enhances message reliability and routing flexibility in Node-RED flows.

Written By:

Technical Writer

Published on:

Recommended Articles:

Sign up for updates