Consume messages from MQTT 5 brokers via sources and send messages to MQTT 5 brokers via targets.
Content-type
When MQTT messages are sent in Ditto Protocol,
the payload should be UTF-8
encoded strings.
If messages, which are not in Ditto Protocol, should be processed, a payload mapping must be configured for the connection in order to transform the messages.
MQTT 5 properties
Supported MQTT 5 properties, which are interpreted in a specific way are:
9 (0x09) Correlation Data
: For correlating request messages and events. Twin events have the correlation IDs of Twin commands that produced them. Stored in the ditto protocol headercorrelation-id
.8 (0x08) Response Topic
: The MQTT topic a requests response is expected in. If a command sets the headerreply-to
, then its response is published at the topic equal to the header value.3 (0x03) Content Type
: The UTF-8 encoded string representation of the payloads content MIME type.
Specific connection configuration
The common configuration for connections in Connections > Sources and Connections > Targets applies here as well.
Following are some specifics for MQTT connections:
Source format
For an MQTT connection:
- Source
"addresses"
are MQTT topics to subscribe to. Wildcards+
and#
are allowed. "authorizationContext"
array that contains the authorization subjects in whose context inbound messages are processed. These subjects may contain placeholders, see placeholders section for more information.- The optional field
"qos"
sets the maximum Quality of Service to request when subscribing for messages. Its value can be0
for at-most-once delivery,1
for at-least-once delivery and2
for exactly-once delivery. The default value is2
(exactly-once). Support of any Quality of Service depends on the external MQTT broker
{
"addresses": [
"<mqtt_topic>",
"..."
],
"authorizationContext": ["ditto:inbound-auth-subject", "..."],
"qos": 2
}
Source header mapping
MQTT 5 supports so-called user defined properties, which are defined for every message type. In addition, Ditto extracts the following headers from each consumed message:
mqtt.topic
: contains the MQTT topic on which a message was receivedmqtt.qos
: contains the MQTT QoS value of a received messagemqtt.retain
: contains the MQTT retain flag of a received messagecorrelation-id
: contains the MQTT 5 “correlation data” valuereply-to
: contains the MQTT 5 “response topic” valuecontent-type
: contains the MQTT 5 “content type” value
The header mapping applies to the supported MQTT 5 specific headers as well as to the user defined properties, e. g.:
{
"headerMapping": {
"topic": "{{ header:mqtt.topic }}",
"the-qos": "{{ header:mqtt.qos }}",
"correlation-id": "{{ header:correlation-id }}",
"device-id": "{{ header:device-id-user-defined-property }}"
}
}
Source acknowledgement handling
For MQTT 5 sources, when configuring acknowledgement requests, consumed messages from the MQTT 5 broker are treated in the following way:
For Ditto acknowledgements with successful status:
- Acknowledges the received MQTT 5 message
For Ditto acknowledgements with mixed successful/failed status:
- If some of the aggregated acknowledgements require redelivery (e.g. based on a timeout):
- based on the specificConfig reconnectForDelivery either
- closes and reconnects the MQTT connection in order to receive unACKed QoS 1/2 messages again
- or simply acknowledges the received MQTT 5 message
- based on the specificConfig reconnectForDelivery either
- If none of the aggregated acknowledgements require redelivery:
- acknowledges the received MQTT 5 message as redelivery does not make sense
Target format
For an MQTT connection, the target address is the MQTT topic to publish events and messages to. The target address may contain placeholders; see placeholders section for more information.
Further, "topics"
is a list of strings, each list entry representing a subscription of
Ditto protocol topics.
Outbound messages are published to the configured target address if one of the subjects in "authorizationContext"
has READ permission on the thing, which is associated with a message.
The additional field "qos"
sets the Quality of Service with which messages are published.
Its value can be 0
for at-most-once delivery, 1
for at-least-once delivery and 2
for exactly-once delivery.
Support of any Quality of Service depends on the external MQTT broker.
The default value is 0
(at-most-once).
{
"address": "mqtt/topic/of/my/device/{{ thing:id }}",
"topics": [
"_/_/things/twin/events",
"_/_/things/live/messages"
],
"authorizationContext": ["ditto:outbound-auth-subject", "..."],
"qos": 0
}
Target header mapping
MQTT 5 supports so-called user defined properties, which are defined for every message type. The header mapping applies to the supported MQTT 5 specific headers as well as to the user defined properties.
Target acknowledgement handling
For MQTT 5 targets, when configuring automatically issued acknowledgement labels, requested acknowledgements are produced in the following way:
Once the MQTT 5 client signals that the message was acknowledged by the MQTT 5 broker, the following information is mapped to the automatically created acknowledgement:
- Acknowledgement.status:
- will be
200
, if the message was successfully ACKed by the MQTT 5 broker - will be
503
, if the MQTT 5 broker ran into an error before an acknowledgement message was received
- will be
- Acknowledgement.value:
- will be missing, for status
200
- will contain more information, in case that an error
status
was set
- will be missing, for status
Specific Configuration
The MQTT 5 binding offers additional specific configurations to apply for the used MQTT client.
Overall example JSON of the MQTT "specificConfig"
:
{
"id": "mqtt-example-connection-123",
"connectionType": "mqtt",
"connectionStatus": "open",
"failoverEnabled": true,
"uri": "tcp://test.mosquitto.org:1883",
"specificConfig": {
"clientId": "my-awesome-mqtt-client-id",
"reconnectForRedelivery": true,
"cleanSession": false,
"separatePublisherClient": true,
"publisherId": "my-awesome-mqtt-publisher-client-id",
"reconnectForRedeliveryDelay": "5s"
},
"sources": ["..."],
"targets": ["..."]
}
clientId
Overwrites the default MQTT client id.
Default: not set - the ID of the Ditto connection is used as MQTT client ID.
If the connection’s clientCount
is 2 or more,
the ID of each connectivity service instance is appended to the client ID to prevent clients from having the same
ID. Otherwise the broker will disconnect the already-connected client every time another client with the same
ID connects.
reconnectForRedelivery
Configures that the MQTT connection re-connects whenever a consumed message (via a connection source) with QoS 1
(“at least once”) 2 (“exactly once”) is processed but cannot be acknowledged successfully.
That causes that the MQTT broker will re-publish the message once the connection reconnected.
If configured to false
, the MQTT message is simply acknowledged (PUBACK
or PUBREC
, PUBREL
).
Default: true
Handle with care:
- when set to
true
, incoming QoS 0 messages are lost during the reconnection phase - when set to
true
and there is also an MQTT target configured to publish messages, the messages to be published during the reconnection phase are lost- to fix that, configure
"separatePublisherClient"
also totrue
in order to publish via another MQTT connection
- to fix that, configure
- when set to
false
, MQTT messages with QoS 1 and 2 could get lost (e.g. during downtime or connection issues)
cleanSession
Configure the MQTT client’s cleanStart
flag. (The flag is called cleanStart
but the option is cleanSession
to
be consistent with MQTT 3 specific config.)
Default: the negation of "reconnectForRedelivery"
separatePublisherClient
Configures whether to create a separate physical client and connection to the MQTT broker for publishing messages, or not.
By default (configured to true
), a single Ditto connection would open 2 MQTT connections/sessions: one for subscribing and one for publishing.
If configured to false
, the same MQTT connection/session is used both: for subscribing to messages, and for
publishing messages.
Default: true
publisherId
Configures a specific MQTT client ID for the case that "separatePublisherClient"
is enabled.
Default:
- if client ID is configured,
clientId
+"p"
- if no client ID is configured,
connectionId
+"p"
reconnectForRedeliveryDelay
Configures how long to wait before reconnecting a consumer client for redelivery when "reconnectForRedelivery"
and separatePublisherClient
are both enabled. The minimum value is 1s
.
Default: 2s
Establishing a connection to an MQTT 5 endpoint
Ditto’s Connectivity service is responsible for creating new and managing existing connections.
This can be done dynamically at runtime without the need to restart any microservice using a Ditto DevOps command.
Example:
Connection configuration to create a new MQTT connection:
{
"id": "mqtt-example-connection-12",
"connectionType": "mqtt-5",
"connectionStatus": "open",
"failoverEnabled": true,
"uri": "tcp://test.mosquitto.org:1883",
"sources": [
{
"addresses": [
"eclipse-ditto-sandbox/#"
],
"authorizationContext": ["ditto:inbound-auth-subject"],
"qos": 0,
"filters": []
}
],
"targets": [
{
"address": "eclipse-ditto-sandbox/{{ thing:id }}",
"topics": [
"_/_/things/twin/events"
],
"authorizationContext": ["ditto:outbound-auth-subject"],
"qos": 0
}
]
}
Client-certificate authentication
Ditto supports certificate-based authentication for MQTT connections. Consult Certificates for Transport Layer Security for how to set it up.
Here is an example MQTT connection, which checks the broker certificate and authenticates by a client certificate.
{
"id": "mqtt-example-connection-124",
"connectionType": "mqtt-5",
"connectionStatus": "open",
"failoverEnabled": true,
"uri": "ssl://test.mosquitto.org:8884",
"validateCertificates": true,
"ca": "-----BEGIN CERTIFICATE-----\n<test.mosquitto.org certificate>\n-----END CERTIFICATE-----",
"credentials": {
"type": "client-cert",
"cert": "-----BEGIN CERTIFICATE-----\n<signed client certificate>\n-----END CERTIFICATE-----",
"key": "-----BEGIN PRIVATE KEY-----\n<client private key>\n-----END PRIVATE KEY-----"
},
"sources": [
{
"addresses": [
"eclipse-ditto-sandbox/#"
],
"authorizationContext": ["ditto:inbound-auth-subject"],
"qos": 0,
"filters": []
}
],
"targets": [
{
"address": "eclipse-ditto-sandbox/{{ thing:id }}",
"topics": [
"_/_/things/twin/events"
],
"authorizationContext": ["ditto:outbound-auth-subject"],
"qos": 0
}
]
}