Ron Idaho
Ron Idaho

Reputation: 67

Configure Azure Event Grid for round-robin distribution

Is it possible to configure an Azure Event Grid topic so that events are sent to subscribers on a round-robin basis?

Upvotes: 1

Views: 279

Answers (1)

Roman Kiss
Roman Kiss

Reputation: 8265

The Azure Event Grid eventing Pub/Sub model distributes an event message in the Fan-Out pattern, such as that all active subscriptions will deliver a message to their destination event handler. There is no way to change this pattern to the load balancing.

However, you can subscribe with an event handler to the Azure Service Bus resource (queue/topic) which it will allow to load balanced between the ASB entities (queues/subscriptions).

Upvotes: 2

Related Questions