What is the max number (if any) of subscriptions a Windows Azure Service Bus Topic can have?

StackOverflow https://stackoverflow.com/questions/20939509

  •  24-09-2022
  •  | 
  •  

Question

I'm considering an architecture that could have tons of subscribers to a single topic. Like tens or hundereds of thousands of individual subscribers. Each would have a SQL filter, something like:

User = 'SomeUserIdentifier'

Just wondering if I'm going to run into a max number of subscriptions on a topic at some point.

Était-ce utile?

La solution

Service Bus supports up to 2,000 subscriptions per topic. (source)

But if you need to go beyond the 2,000 subscriptions limit you can create multiple levels of subscriptions with the Auto-forwarding capabilities of a Subscription. This means you could have the following:

Topic A

  • Subscription 1 -> Auto-forward -> Topic A1 -> Subscription A1.1, Subscription A1.2, ...
  • Subscription 2 -> Auto-forward -> Topic A2 -> Subscription A2.1, Subscription A2.2, ...
  • ...
  • Subscription 2000 -> Auto-forward -> Topic A2000 -> Subscription A2000.1, Subscription A2000.2, ...

This means you would have virtually no limit on the number of subscriptions you could have on a topic.

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top