Codementor Events

What is the MQTT Keep Alive Parameter for?

Published Sep 08, 2022
What is the MQTT Keep Alive Parameter for?

Keep Alive in MQTT Protocol

Why we need Keep Alive

The MQTT protocol is hosted on top of the TCP protocol, which is connection-oriented, and provides a stable and orderly flow of bytes between two connected parties. However, in some cases, TCP can have half-connection problems. A half-connection is a connection that has been disconnected or not established on one side, while the connection on the other side is still maintained. In this case, the half-connected party may continuously send data, which obviously never reaches the other side. To avoid black holes in communication caused by half-connections, the MQTT protocol provides a Keep Alive mechanism that allows the client and MQTT server to determine whether there is a half-connection problem, and close the corresponding connection.

Mechanism and Use of Keep Alive

At Connection

When an MQTT client creates a connection to the MQTT broker, the Keep Alive mechanism can be enabled between the communicating parties by setting the Keep Alive variable header field in the connection request protocol packet to a non-zero value. Keep Alive is an integer from 0 to 65535, representing the maximum time in seconds allowed to elapse between MQTT protocol packets sent by the client.

When the broker receives a connection request from a client, it checks the value of the Keep Alive field in the variable header. When there is a value, the broker will enable the Keep Alive mechanism.

In the MQTT 5.0 standard, the concept of Server Keep Alive was also introduced, allowing the broker to choose to accept the Keep Alive value carried in the client request, or to override it, depending on its implementation and other factors. If the broker chooses to override this value, it needs to set the new value in the Server Keep Alive field of the Connection Acknowledgement Packet (CONNACK), and the client needs to use this value to override its own previous Keep Alive value when it reads it in the CONNACK.

The Keep Alive Process

  1. Client Process

    After the connection is established, the client needs to ensure that the interval between any two MQTT protocol packets it sends does not exceed the Keep Alive value. If the client is idle and has no packets to send, it can send PINGREQ protocol packets, instead.

    When the client sends a PINGREQ packet, the broker must return a PINGRESP packet. If the client does not receive a PINGRESP packet from the server within a reliable time, it means that there is a half-connection, the broker is offline, or there is a network failure, and the client should close the connection.

  2. Broker Process

    After the connection is established, if the broker does not receive any packets from the client within 1.5 times the Keep Alive time, it will assume that there is a problem with the connection to the client, and the broker will disconnect from the client.

    If the broker receives a PINGREQ protocol packet from the client, it needs to reply with a PINGRESP protocol packet for confirmation.

  3. Client Takeover Mechanism

    When there is a half-connection within the broker, and when the corresponding client initiates a reconnection or a new connection, the broker will start the client takeover mechanism: it closes the old half-connection and establishes a new connection with the client.

    This mechanism ensures that the client will not be prevented from reconnecting due to a half-connection problem.

How to Use Keep Alive in EMQX

In EMQX, you can customize the behavior of the Server Keep Alive mechanism through the configuration file. The relevant field is as follows:

zone.external.server_keepalive

Type Default
integer -

If this value is not set, the Keep Alive time will be determined by the client at the time it creates a connection.

If this value is set, the broker forces the Server Keep Alive mechanism to be enabled for all connections in that zone and will use that value to override the value in the client connection request.

zone.external.keepalive_backoff

Type Optional Value Default
float > 0.5 0.75

The MQTT protocol requires the broker to assume that the client is disconnected when it does not receive any protocol packets from the client within 1.5 times the Keep Alive time.

In EMQX, we introduced the keepalive backoff factor and exposed this factor through the configuration file in order to allow users to more flexibly control the Keep Alive behavior on the broker side.

After introducing the backoff factor, EMQX calculates the maximum timeout using the following formula:

Keepalive * backoff * 2

The default value of backoff is 0.75. Therefore, the behavior of EMQX will be fully compliant with the MQTT standard when the user does not modify this configuration.

Refer to the EMQX configuration documentation for more information.

Note: Setting Keep Alive for WebSocket Connections

EMQX supports client access via WebSockets. When a client initiates a connection using WebSockets, it only needs to set the Keep Alive value in the client connection parameters. Refer to Connecting to an MQTT Server Using WebSocket.

Summary

This article introduces the Keep Alive mechanism in the MQTT protocol and how to use it in EMQX. Developers can use this feature to ensure the stability of MQTT connections and build more robust IoT applications.

Originally published at https://www.emqx.com.

Discover and read more posts from EMQ Technologies
get started
post commentsBe the first to share your opinion
Nervex Olver
a year ago

The MQTT Keep Alive parameter is used to ensure the stability and reliability of an MQTT connection between a client and a broker. It specifies the maximum amount of time that can pass without any communication between the client and the broker before the connection is considered lost. The MQTT Keep Alive parameter helps prevent connection timeouts and enables clients to maintain their subscriptions to MQTT topics even when the network connection is unstable.

For example, if a client is subscribed to a topic on Magix Shears (https://magixshears.com/straight-shears/)’ website using MQTT, the Keep Alive parameter ensures that the client remains connected to the broker and receives real-time updates about new product releases, promotions, or other important information. If the Keep Alive parameter is set too low, the client may experience frequent disconnections and miss out on critical updates. On the other hand, if the Keep Alive parameter is set too high, it may increase network traffic and cause delays in message delivery.

Overall, the MQTT Keep Alive parameter is a critical component of the MQTT protocol that helps ensure the stability and reliability of MQTT connections. Its importance is particularly relevant for IoT devices and applications that require real-time communication with cloud-based services or websites like Magix Shears.

Show more replies