Provides support for sending messages over RabbitMQ using the RabbitMQ .NET Client.
Transport at a glance
Feature | |
---|---|
Transactions | None, ReceiveOnly |
Pub/Sub | Native |
Timeouts | Native |
Large message bodies | Broker can handle arbitrary message size within available resources, very large messages via data bus |
Scale-out | Competing consumer |
Scripted Deployment | Not supported |
Installers | Mandatory |
Configuring the endpoint
To use RabbitMQ as the underlying transport:
endpointConfiguration.UseTransport<RabbitMQTransport>();
The RabbitMQ transport requires a connection string to connect to the broker. See connection settings for options on how to provide the connection string.
Routing topology
Routing topologies are used to control how queues, exchanges, and bindings are created on the RabbitMQ broker. In version 5 and above, selecting a routing topology is mandatory. For backwards compatibility, use the ConventionalRoutingTopology
, which was the previous default:
var transport = endpointConfiguration.UseTransport<RabbitMQTransport>();
transport.UseConventionalRoutingTopology();
See the routing topology documentation for further details.
Advantages and disadvantages
Advantages
- Provides native reliability and high-availability features.
- Offers a native publish-subscribe mechanism; therefore it doesn't require NServiceBus persistence for storing event subscriptions.
- Wide range of supported clients allows for integrating the system with applications written in other languages using native RabbitMQ features.
- Supports the competing consumers pattern out of the box. Messages are received by instances in a round-robin fashion without additional configuration.
Disadvantages
- Doesn't handle network partitions well; partitioning across a WAN requires dedicated features.
- Requires careful consideration for duplicate messages, e.g. using the outbox feature or making all endpoints idempotent.
- Many organizations don't have the same level of expertise with RabbitMQ as with other technologies, such as SQL Server, so it may require additional training.
- May require additional costs of commercial RabbitMQ license and support.
Controlling delivery mode
In AMQP the delivery_mode
controls how the broker treats the message from a durability standpoint. NServiceBus will default to persistent
in order to prevent message loss. To optimize for higher throughput this can be changed to non-persistent
.
To request non-persistent
delivery use the following {Send|Publish|Reply}Options
as shown below.
var options = new SendOptions();
options.RouteToThisEndpoint();
options.UseNonPersistentDeliveryMode();
await context.Send(new MyMessage(), options);