Azure Service Bus

Detailed documentation on the Azure Service Bus pubsub component

Component format

To setup Azure Event Hubs pubsub create a component of type pubsub.azure.servicebus. See this guide on how to create and apply a pubsub configuration.

  1. apiVersion: dapr.io/v1alpha1
  2. kind: Component
  3. metadata:
  4. name: servicebus-pubsub
  5. namespace: default
  6. spec:
  7. type: pubsub.azure.servicebus
  8. version: v1
  9. metadata:
  10. - name: connectionString # Required
  11. value: "Endpoint=sb://{ServiceBusNamespace}.servicebus.windows.net/;SharedAccessKeyName={PolicyName};SharedAccessKey={Key};EntityPath={ServiceBus}"
  12. - name: timeoutInSec # Optional
  13. value: 60
  14. - name: handlerTimeoutInSec # Optional
  15. value: 60
  16. - name: disableEntityManagement # Optional
  17. value: "false"
  18. - name: maxDeliveryCount # Optional
  19. value: 3
  20. - name: lockDurationInSec # Optional
  21. value: 60
  22. - name: lockRenewalInSec # Optional
  23. value: 20
  24. - name: maxActiveMessages # Optional
  25. value: 2000
  26. - name: maxActiveMessagesRecoveryInSec # Optional
  27. value: 2
  28. - name: maxConcurrentHandlers # Optional
  29. value: 10
  30. - name: prefetchCount # Optional
  31. value: 5
  32. - name: defaultMessageTimeToLiveInSec # Optional
  33. value: 10
  34. - name: autoDeleteOnIdleInSec # Optional
  35. value: 10

NOTE: The above settings are shared across all topics that use this component.

Warning

The above example uses secrets as plain strings. It is recommended to use a secret store for the secrets as described here.

Spec metadata fields

FieldRequiredDetailsExample
connectionStringYConnection-string for the Event HubsEndpoint=sb://{ServiceBusNamespace}.servicebus.windows.net/;SharedAccessKeyName={PolicyName};SharedAccessKey={Key};EntityPath={ServiceBus}
timeoutInSecNTimeout for sending messages and management operations. Default: 6030
handlerTimeoutInSecNTimeout for invoking app handler. # Optional. Default: 6030
disableEntityManagementNWhen set to true, topics and subscriptions do not get created automatically. Default: “false”“true”, “false”
maxDeliveryCountNDefines the number of attempts the server will make to deliver a message. Default set by server10
lockDurationInSecNDefines the length in seconds that a message will be locked for before expiring. Default set by server30
lockRenewalInSecNDefines the frequency at which buffered message locks will be renewed. Default: 20.20
maxActiveMessagesNDefines the maximum number of messages to be buffered or processing at once. Default: 100002000
maxActiveMessagesRecoveryInSecNDefines the number of seconds to wait once the maximum active message limit is reached. Default: 210
maxConcurrentHandlersNDefines the maximum number of concurrent message handlers10
prefetchCountNDefines the number of prefetched messages (use for high throughput / low latency scenarios)5
defaultMessageTimeToLiveInSecNDefault message time to live.10
autoDeleteOnIdleInSecNTime in seconds to wait before auto deleting messages.10

Create an Azure Service Bus

Follow the instructions here on setting up Azure Service Bus Topics.

Related links

Last modified March 18, 2021: Merge pull request #1321 from dapr/aacrawfi/logos (9a399d5)