Reputation: 1
If I have access to Azure Queues, Topics, and Event Hubs which is the best technology to use if I have one producer, and approximately 1000 subscribers? The message size would be less than 30k, and the amount would be no greater than 3000 per day. I've read over the Azure docs, and it remains unclear what approach is best if I need all 1000 subscribers to all get the message once?
Any help appreciated,
Upvotes: 0
Views: 195
Reputation: 26057
For events with a large number of subscribers, I would look at EventGrid with a custom topics/events. EventGrid can handle way more than a thousand subscribers, has low latency, reliable (retries up to 24 hours), and build for high throughput, allowing millions of events per second, region agnostic.
Upvotes: 1