Reputation: 1528
I don't manage to get over 14 msg/second with the Azure ServiceBus Standard Plan. I'm running some benchmark tests with the Azure-Sample tool that I found in this question:
The test is done with a ServiceBus resource with a single Queue and all default configurations:
Upvotes: 0
Views: 247
Reputation: 25994
If I read this correctly, you've got the maximum concurrency of one (MaxInflightReceives
) with 5 receivers (ReceiverCount
). Increasing concurrency and enabling prefetch on the clients will increase the overall throughput. But,
PeekLock
. It is slower than ReceiveAndDelete
. Not suggesting to switch, but this needs to be taken into consideration as you're trading throughput for safety by using PeekLock
.Upvotes: 2