15
votes

I am trying to understand how can I make Azure Service Bus Topic to be scaleable to handle >10,000 requests/second from more than 50 different clients. I found this article at Microsoft - http://msdn.microsoft.com/en-us/library/windowsazure/hh528527.aspx. This provides lot of good input to scale azure service bus like creating multiple message factories, sending and receiving asynchronously, doing batch send/receive.

But all these input are from the publisher and subscriber client perspective. What if the node running the Topic can not handle the huge number of transactions? How do I monitor that? How do I have the Topic running on multiple nodes? Any input on that would be helpful.

Also wondering if any one has done any capacity testing with Topic/Queue and I am eager to see those results...

Thanks, Prasanna

4
What do you mean "have the Topic running on multiple nodes"?Sandrino Di Mattia

4 Answers

13
votes

If you need 10K or 100K or 1M or more requests per seconds take a look at what's being done on the highway. More traffic, more lanes.

You can get effectively arbitrary flow rates out of Service Bus by partitioning your traffic across multiple entities. Service Bus gives a number of assurances about reliability, e.g. that we don't lose messages once we took them from you or that we assign gapless sequence numbers, and that has throughput impact on the individual entities like a single Topic. That's exactly like a highway lane just being able to deal with X cars/hour. Make more lanes.

8
votes

Since these replies, Microsoft has released a ton of new capability.

  1. Azure Auto-Scale can monitor the messages in a queue (or CPU load) and start or stop instances to maintain that target.
  2. Service Bus introduced Partitioned Queue's (& topics). This lets you send messages over multiple queues but they look like a single queue to you API. Dramatically increasing the throughput of a Queue.

Before you do that I'd recommend you try:-

  • Async & Batched writes to the queue.
  • Change the Prefetch parameter on the Reads.
  • Also look at Receive.OnMessage() to ensure you get the messages the millisec they are available.

This will improves your perf from ~5 messages / sec to many 100's or 1,000's per sec.

3
votes

The Service Bus has its limitations "Capacity and Quotas", check out this article for a very good overview of these: https://docs.microsoft.com/en-gb/azure/service-bus-messaging/service-bus-azure-and-service-bus-queues-compared-contrasted

I suggest you reach out to your local MSFT Specialist if you have a use case that will push the boundaries of Azure Service Bus, MSFT have dedicated teams in Redmond (around the world) that can help you design and push these boundaries at massive scale, this is the Windows Azure CAT (Customer Advisory Team). Their goal is to solve real world customer problems and it sounds like you might have one...

You need to performance and load test to reach all the answers to your questions above based on your specific scenario.

The Azure CAT team have a wealth of metrics on capacity and load testing with the Service Bus (Azure in general), these are not always publicly available so again reach out if you can...

1
votes

If it can handle that many requests, you want to make sure that you receive the messages in such a way that you don't hit the max size of the topic. You can use multiple instances of a worker role in Azure to listen to specific subscriptions so you would be able to process messages faster without getting near the max size.