Configuring an endpoint
To use Azure Service Bus as the underlying transport:
var transport = endpointConfiguration.UseTransport<AzureServiceBusTransport>();
transport.ConnectionString("Endpoint=sb://[NAMESPACE].servicebus.windows.net/;SharedAccessKeyName=[KEYNAME];SharedAccessKey=[KEY]");
Connectivity
These settings control how the transport connects to the broker.
Transport
UseWebSockets()
: Configures the transport to use AMQP over websockets.TimeToWaitBeforeTriggeringCircuitBreaker(TimeSpan)
: The time to wait before triggering the circuit breaker after a critical error occurred. Defaults to 2 minutes.
Retry-policy
CustomRetryPolicy(RetryPolicy)
: Allows replacement of the default retry policy.
Token-credentials
CustomTokenProvider(ITokenProvider)
: Allows replacement of the default token provider, which uses the shared secret in the connection string for authentication. This opens up additional authentication mechanisms such as shared access signatures, SAML, Oauth, SWT, windows authentication, managed identities for Azure resources, or even custom implementations.
Entity creation
These settings control how the transport creates entities in the Azure Service Bus namespace.
Topology
TopicName(string)
: The topic's name used to publish events between endpoints. All endpoints share this topic, so ensure all endpoints specify the same topic name. Defaults tobundle-1
. Topic names must adhere to the limits outlined in the Microsoft documentation on topic creation.
Settings
EntityMaximumSize(int)
: The maximum entity size in GB. The value must correspond to a valid value for the namespace type. Defaults to 5. See the Microsoft documentation on quotas and limits for valid values.EnablePartitioning()
: Partitioned entities offer higher availability, reliability, and throughput over conventional non-partitioned queues and topics. For more information about partitioned entities see the Microsoft documentation on partitioned messaging entities.SubscriptionNameShortener(Func
: By default subscription names are derived from the endpoint name, which may exceed the maximum length of subscription names. This callback allows for a replacement name for the subscription. Subscription names must adhere to the limits outlined in the Microsoft documentation on subscription creation.<string, string>) RuleNameShortener(Func
: By default rule names are derived from the message type's full name, which may exceed the maximum length of rule names. This callback allows for a replacement name for the rule. Rule names must adhere to the limits outlined in Service Bus quotas.<string, string>)
Controlling the prefetch count
When consuming messages from the broker, throughput can be improved by having the consumer prefetch additional messages. The prefetch count is calculated by multiplying maximum concurrency by the prefetch multiplier. The default value of the multiplier is 10, but it can be changed by using the following:
transport.PrefetchMultiplier(3);
Alternatively, the whole calculation can be overridden by setting the prefetch count directly using the following:
transport.PrefetchCount(100);
To disable prefetching, prefetch count should be set to zero.
Lock-renewal
For all supported transport transaction modes (expect TransportTransactionMode.
), the transport uses a peek-lock mechanism to ensure a single instance of an endpoint can process a message. The default lock duration is specified during the entity creation. By default, the transport uses the SDK's default maximum auto lock renewal duration of 5 minutes.