Inter-Protocol Property Conversions
This guide covers RabbitMQ 3.13 and later versions.
Table of contents
Overview
RabbitMQ is a multi-protocol broker supporting AMQP 1.0
(henceforth AMQP), AMQP 0.9.1,
MQTT, STOMP,
and the RabbitMQ Streams protocols.
Messages can readily be published by one protocol and consumed by others.
This necessitates data format conversions between different protocol formats.
Prior to RabbitMQ 3.13 all messages were converted into an internal format based
on the AMQP 0.9.1 protocol when published to RabbitMQ. This approach often resulted in unnecessary
conversions and/or data fidelity issues.
Since RabbitMQ 3.13 the approach has changed for the AMQP 0.9.1 and MQTT protocols
in that messages will always be stored in their original format and only converted
if consumed by a protocol different from the originating protocol. This has the advantage
that no protocol specific information is lost when the originating and the consuming protocols
are the same.
The only exception to this rule are streams: No matter which protocol published,
streams internally store their messages as AMQP 1.0 encoded data. Hence, when for example publishing using AMQP 0.9.1
a conversion to AMQP takes place.
All conversions have been re-written and formalised.
This document aims to capture the conversions rules that are implemented so that
application developers can look back at this to understand how their messages
will be transformed in their multi-protocol messaging applications.
Conventions
shortstr
: (condition) a string that is smaller than 256 bytes and contains only valid
UTF-8 encoded data with no NUL
(binary zero octet) characters.
*
: is read as "any" (field/type etc).
Conditions can be read to be evaluated in the order they are written. For example
an AMQP message_id
of type utf8
with more than 255 bytes will fail the first
shortstr
condition and then fall through to the next line.
If there is no matching line then the data will not be converted (and therefore not be
available to the consuming application).
AMQP 0.9.1
In RabbitMQ 3.13 the AMQP (1.0) plugin does not implement these conversion rules yet
and they are only used when reading from a stream. However they will be used
as of RabbitMQ 4.0+.
AMQP section | AMQP field | AMQP type | Condition | AMQP 0.9.1 section | AMQP 0.9.1 Field | AMQP 0.9.1 Type | Comment |
---|
header | durable | boolean | | properties | delivery_mode | ubyte | 2 = durable, 1 = transient |
header | priority | ubyte | | properties | priority | ubyte | |
header | ttl | milliseconds (uint) | | properties | expiration | shortstr | milliseconds converted to string value |
properties | message_id | utf8 | shortstr | properties | message_id | shortstr | |
properties | message_id | utf8 | > 256 bytes | properties | headers, Key: x-message-id | longstr | |
properties | message_id | uuid (16 byte binary) | | properties | message_id | shortstr | converted to text e.g. "urn:uuid:550e8400-e29b-41d4-a716-446655440000" |
properties | message_id | ulong | | properties | message_id | shortstr | converted to text |
properties | message_id | binary | | properties | headers, Key: x-message-id | binary | |
properties | user_id | binary | shortstr | properties | user_id | shortstr | |
properties | to | address | | | | | |
properties | subject | utf8 | | | | | |
properties | reply_to | address | shortstr | properties | reply_to | shortstr | |
properties | correlation_id | utf8 | shortstr | properties | correlation_id | shortstr | |
properties | correlation_id | utf8 | > 256 bytes | properties | headers, Key: x-correlation-id | longstr | |
properties | correlation_id | uuid (16 byte binary) | | properties | correlation_id | shortstr | converted to text representation, eg. "urn:uuid:550e8400-e29b-41d4-a716-446655440000" |
properties | correlation_id | ulong | | properties | correlation_id | shortstr | Converted to text representation of number |
properties | correlation_id | binary | | properties | headers, Key: x-correlation-id | binary | |
properties | content_type | symbol | | properties | content_type | shortstr | |
properties | content_encoding | symbol | | properties | content_encoding | shortstr | |
properties | absolute_expiry_time | timestamp | | | | | |
properties | creation_time | timestamp | | properties | timestamp | timestamp | converted to seconds |
properties | group_id | utf8 | shortstr | properties | app_id | shortstr | |
properties | group_sequence | sequence-no | | | | | |
properties | reply_to_group_id | utf8 | | | | | |
application properties | * | * (see type conversions) | Key: shortstr | properties | headers | * | |
message annotations | * (symbol - x-cc*) | | Key: x-cc | properties | headers, Key: "CC" | longstr | |
message annotations | * (symbol - x-*) | * (see type conversions) | Key: shortstr & x-* | properties | headers | * | Typically this means x- headers |
data | | data | single data section | payload | | binary | plain binary extracted from data section |
data (multiple) | * | * | multiple data sections | payload | | AMQP 1.0 encoded binary | properties.type will be set to "amqp-1.0" |
amqp.value | * | * | | payload | | AMQP 1.0 encoded binary | properties.type will be set to "amqp-1.0" |
amqp.sequence | * | * | | payload | | AMQP 1.0 encoded binary | properties.type will be set to "amqp-1.0" |
AMQP 0.9.1 type conversions
AMQP 1.0 type | Condition | AMQP 0.9.1 type | Comment |
---|
utf8 (string) | | longstr | RabbitMQ does not support shortstr header values so all utf8 inputs are converted to longstr unless it is a field in the basic properties |
binary | | binary | |
long | | long | |
ulong | | long | risk of overflow |
ubyte | | unsignedbyte | |
short | | short | |
ushort | | usignedshort | |
uint | | unsignedint | |
int | | signedint | |
double | | double | |
float | | float | |
boolean | | bool | |
timestamp | | timestamp (seconds) | value divided by 1000 |
byte | | byte | |
null | | void | |
list | | array | |
map | | table | |
symbol | | longstr | |
AMQP
AMQP 0.9.1 section | AMQP 0.9.1 field | AMQP 0.9.1 type | Condition | AMQP 1.0 section | AMQP 1.0 Field | AMQP 1.0 Type | Comment |
---|
basic properties | message_id | shortstr | valid urn uuid | properties | message_id | uuid | |
basic properties | message_id | shortstr | | properties | message_id | utf8 | |
basic properties | correlation_id | shortstr | valid urn uuid | properties | correlation_id | uuid | |
basic properties | correlation_id | shortstr | | properties | correlation_id | utf8 | |
basic properties | user_id | shortstr | | properties | user_id | binary | |
basic properties | expiration | shortstr | if convertible to numeric type | header | ttl | uint | |
basic properties | type | shortstr | | message annotations | x-basic-type | utf8 | |
basic properties | reply_to | shortstr | | properties | reply_to | utf8 | |
basic properties | app_id | shortstr | | properties | group-id | utf8 | |
basic properties | timestamp | timestamp (seconds) | | properties | creation_time | timestamp | converted to ms |
basic properties | content-type | shortstr | | properties | content-type | symbol | |
basic properties | content-encoding | shortstr | | properties | content-encoding | symbol | |
basic properties | delivery-mode | octet | | header | durable | boolean | previously in x-basic-delivery-mode |
basic properties | priority | octet | | header | priority | ubyte | previously in x-basic-priority |
basic.properties | headers | | Key=x-amqp-1.0-properties | properties | - | - | legacy 1.0 plugin headers |
basic.properties | headers | | Key=x-amqp-1.0-application-properties | application properties | - | - | legacy 1.0 plugin headers |
basic.properties | headers | | Key=x-amqp-1.0-message-annotations | message annotations | - | - | legacy 1.0 plugin headers |
basic.properties | headers | | Key=x-reply-to-topic | properties | reply_to | utf8 | "/topic/" RK |
basic properties | headers | * | Key begins with "x-" | message annotations | Key | * | see type conversion rules |
basic properties | headers | table | Value not array or table | application properties | Key | * | see type conversion rules |
basic properties | headers | table | Value is array or table | - | - | - | not converted |
payload | - | binary | | data | - | data | |
AMQP type conversions
AMQP 0.9.1 type | Condition | AMQP 1.0 type | Comment |
---|
longstr | shortstr | utf8 | Performance / accuracy trade-off |
longstr | | binary | |
long | | long | |
ubyte | | ubyte | |
short | | short | |
ushort | | ushort | |
uint | | uint | |
int | | int | |
double | | double | |
float | | float | |
bool | | boolean | |
binary | | binary | |
timestamp | | timestamp | Converted from seconds to milliseconds |
byte | | byte | |
void | | null | |
array | | list | |
table | | map | |
table.key | x-* header | symbol | |
table.key | | utf8 | |
table.value | | * | converted according to this table |
AMQP
MQTT 5.0 Section | MQTT Field | MQTT 5.0 Type | Condition | AMQP 1.0 Section | AMQP 1.0 Field | AMQP 1.0 Type | Comment |
---|
Fixed Header | Dup | Bits | | | | | Setting to header first-acquirer does not make sense because the DUP flag only applies from client to server (consumption from server to client is determined by the Redelivered flag sent from the queues) |
Fixed Header | QoS | Bits | | header | durable | boolean | durable is true if QoS > 0 |
Fixed Header | Retain | Bits | | | | | |
Variable Header | Payload Format Indicator | Bits | | | | | see row "Payload" with condition "Payload Format Indicator set" |
Variable Header | Message Expiry Interval | uint | | header | ttl | milliseconds | seconds to milliseconds |
Variable Header | Topic Alias | ushort | | | | | |
Variable Header | Response Topic | utf8 | | properties | reply_to | utf8 | Translate MQTT topic to AMQP routing key (RK). Set reply-to address to "/exchange/" X "/" RK. |
Variable Header | Correlation Data | binary | urn:uuid | properties | correlation_id | uuid | |
Variable Header | Correlation Data | binary | | properties | correlation_id | binary | |
Variable Header | User Property | utf8 | Key begins with "x-" and key is ASCII | message annotation | | value: utf8 | Key is of type symbol |
| | | Key does not begin with "x-" | application properties | | value: utf8 | Key is of type utf8 |
Variable Header | Subscription Identifier | uint | | | | | |
Variable Header | Content Type | utf8 | valid ASCII | properties | content_type | symbol | MQTT content type is UTF-8 whereas AMQP 1.0 content type is only ASCII |
Payload | | | Payload Format Indicator unset | data | | data | |
Payload | | | Payload Format Indicator set | amqp.value | | utf8 | If the Payload Format Indicator is set, convert the MQTT payload to a string (i.e. single AMQP value section) because an AMQP string is UTF-8 encoded |
AMQP type conversions
MQTT 5.0 Type | Condition | AMQP 1.0 Type | Comment |
---|
Bits | | boolean | only selected flags are converted |
ushort | | ushort | |
uint | | uint | |
utf8 | | utf8 | |
binary data | utf8 | utf8 | |
binary data | | binary | |
utf8 string pairs | | map | de-duplicate keys, but maintains order |
AMQP 0.9.1
MQTT 5.0 Section | MQTT 5.0 Field | MQTT 5.0 Type | Condition | AMQP 0.9.1 Section | AMQP 0.9.1 Field | AMQP 0.9.1 Type | Comment |
---|
Fixed Header | Dup | Bits | | | | | Setting to basic.deliver field redelivered does not make sense because the DUP flag only applies from client to server (consumption from server to client is determined by the Redelivered flag sent from the queues) |
Fixed Header | QoS | Bits | | properties | delivery_mode | | QoS 0 maps to delivery_mode 1 QoS 1 maps to delivery_mode 2 |
Fixed Header | Retain | Bits | | | | | |
Variable Header | Payload Format Indicator | Bits | | | | | AMQP 0.9.1 content_encoding refers to a MIME content encoding whose valid values are listed in https://www.iana.org/assignments/http-parameters/http-parameters.xml Therefore AMQP 0.9.1 content_encoding is something different. It would best map to text/<subtype>; charset="utf-8 of content_type, but the <subtype> is not defined. Furthermore MQTT 5.0 property Content Type is already defined. |
Variable Header | Message Expiry Interval | uint | | properties | expiration | shortstr | seconds to milliseconds |
Variable Header | Topic Alias | ushort | | | | | |
Variable Header | Response Topic | utf8 | | properties | headers, Key: x-reply-to-topic | longstr | AMQP 0.9.1 property reply_to refers to a queue name, not to a topic name |
Variable Header | Correlation Data | binary | shortstr | properties | correlation_id | shortstr | |
| | | | properties | headers, Key: x-correlation-id | longstr | |
Variable Header | User Property | utf8 string pair | name is shortstr | properties | headers | longstr | RabbitMQ cannot have shortstr as e.g. header values. |
Variable Header | Subscription Identifier | variable byte integer | | | | | |
Variable Header | Content Type | utf8 | shortstr | properties | content_type | shortstr | |
Payload | | | | payload | | | |
AMQP 0.9.1 type conversions
MQTT 5.0 Type | Condition | AMQP 0.9.1 Type | Comment |
---|
Bits | | Bits | |
ushort | | ushort | |
uint | | uint | |
utf8 | < 256 bytes AND target is not header | shortstr | RabbitMQ cannot have shortstr as e.g. header values. |
utf8 | >= 256 bytes | longstr | |
binary | < 256 bytes of UTF-8 encoded data | shortstr | |
binary | no valid UTF-8 or >= 256 bytes | longstr | |
utf8 pairs | | table | "Duplicate fields are illegal" in AMQP 0.9.1 Field Tables. RabbitMQ sorts the fields by key. |
MQTT 5.0
AMQP 1.0 section | AMQP 1.0 field | AMQP 1.0 type | Condition | MQTT 5.0 Section | MQTT 5.0 Field | MQTT 5.0 Type | Comment |
---|
header | durable | boolean | | Fixed Header | QoS | Bits | durable=true maps to QoS 1 durable=false maps to QoS 0 |
properties | message_id | * | | | | | |
properties | user_id | binary | | | | | |
properties | to | address | | | | | |
properties | subject | utf8 | | | | | |
properties | reply_to | address | "/exchange/" X "/" RK where X matches mqtt.exchange | Variable Header | Response Topic | utf8 | Translate AMQP topic to MQTT topic |
properties | correlation_id | * | | Variable Header | Correlation Data | binary | convert to binary |
properties | content_type | symbol | | Variable Header | Content Type | utf8 | |
properties | content_encoding | symbol | | | | | |
properties | absolute_expiry_time | timestamp | | | | | |
properties | creation_time | timestamp | | | | | |
properties | group_id | utf8 | | | | | |
properties | group_sequence | sequence-no | | | | | |
properties | reply_to_group_id | utf8 | | | | | |
application properties | * | * | not array, list, map or binary | User Properties | | utf8 | Values converted to string representation |
message annotations | * | * | x- headers only, excluding those with array, list, map or binary values | User Properties | | utf8 | |
data | | data | one or more data sections | Payload | | binary | |
data | * | * | single AMQP binary value section | Payload | | binary | |
data | | amqp.value(utf8) | single AMQP value section convertible to UTF-8 | Payload | | binary | Payload-Format-Indicator is set to 1 such that MQTT 5.0 clients can parse the text representation of the message and therefore understand the message. |
data | | * | other single AMQP value section or amqp-sequence sections | Payload | | binary | Encode with the AMQP type system and include a Content Type message/vnd.rabbitmq.amqp . This Content Type is not registered. |
MQTT 5.0
AMQP 0.9.1 section | AMQP 0.9.1 field | AMQP 0.9.1 type | Condition | MQTT 5.0 Section | MQTT 5.0 Field | MQTT 5.0 Type | Comment |
---|
basic properties | message_id | shortstr | | | | | |
basic properties | correlation_id | shortstr | | Variable Header | Correlation Data | binary | |
basic properties | user_id | shortstr | | | | | |
basic properties | expiration | shortstr | | Variable Header | Message Expiry Interval | uint | convert from milliseconds to seconds |
basic properties | type | shortstr | | | | | |
basic properties | reply_to | shortstr | | | | | |
basic properties | app_id | shortstr | | | | | |
basic properties | timestamp | timestamp (seconds) | | | | | |
basic properties | content_type | shortstr | | Variable Header | Content Type | utf8 | |
basic properties | content_encoding | shortstr | | | | | |
basic properties | delivery_mode | octet | | Fixed Header | QoS | Bits | delivery-mode 2 maps to QoS 1 delivery-mode 1 maps to QoS 0 |
basic properties | priority | octet | | | | | |
basic.properties | headers | longstr | Key=x-reply-to-topic | Variable Header | Response Topic | utf8 | Translate AMQP topic to MQTT topic |
basic.properties | headers | longstr | Key=x-correlation-id | Variable Header | Correlation Data | binary | |
basic.properties | headers | * | not array, table | User properties | | utf8 | Simple values are converted into their string representation |
basic properties | headers | table | | | | | |
payload | | binary | | Payload | | | |