AMQP 1.0
AMQP 1.0 is supported natively since RabbitMQ 4.0.
Version Negotiation
RabbitMQ natively supports both AMQP 1.0 and AMQP 0.9.1 out of the box, without requiring any additional plugins.
By default, RabbitMQ listens on port 5672, accepting connections for both AMQP 1.0 and AMQP 0.9.1.
After establishing a TCP or TLS connection and before sending any AMQP frames, the client sends a protocol header indicating whether it wants to use AMQP 1.0 or AMQP 0.9.1, as outlined in Section 2.2 Version Negotiation.
For AMQP 1.0 connections, RabbitMQ requires the use of Simple Authentication and Security Layer (SASL), as described in Section 5.3 SASL. If the client does not use SASL, RabbitMQ will reject the connection, as illustrated in Figure 2.13: Protocol ID Rejection Example.
Protocol Interoperability
RabbitMQ supports publishing and consuming messages across different protocols, which requires protocol conversions.
When a message is published using AMQP 1.0, all target queue types (classic queues, quorum queues, and streams) store the message in its original AMQP 1.0 format. If the message is later consumed using AMQP 1.0, no protocol conversion is necessary. Additionally, as mandated by the AMQP 1.0 specification, RabbitMQ ensures the immutability of the bare message. This allows clients to set message hashes, checksums, and digital signatures not only over the message body but also over the properties and application-properties sections.
Virtual Hosts
RabbitMQ supports logical multi-tenancy with virtual hosts.
If no virtual host was explicitly specified by the connecting application, the connection use the default_vhost
configured in rabbitmq.conf:
default_vhost = /
AMQP 1.0 clients can connect to a different virtual host by prefixing the value of the hostname
field in the open
frame with vhost:
.
For example, to connect to a virtual host called tenant-1
, the client sets the hostname
field to vhost:tenant-1
.