Getting Started
Architecture
NServiceBus
Transports
Persistence
ServiceInsight
ServicePulse
ServiceControl
Monitoring
Samples

Cluster configurations with multiple nodes

Target Version: NServiceBus 9.x
This page targets a pre-release version. Pre-releases are subject to change and samples are not guaranteed to be fully functional.

RavenDB version 5.2 and higher support cluster-wide transactions.

Cluster-wide transactions should be enabled when the database is replicated accross multiple nodes in a cluster. If the database only resides on a single node, cluster-wide transactions are not required.

To enable cluster-wide transaction support use:

var persistence = endpointConfiguration.UsePersistence<RavenDBPersistence>();
persistence.EnableClusterWideTransactions();

Last modified