I get the following exception on Windows Azure when I try to retrieve messages from the service bus.
Microsoft.ServiceBus.Messaging.ServerBusyException: The request was terminated because the object is throttled. Please wait 10 seconds and try again.
An exception occurs after a call to the Receive method:
QueueClient queueClient = _messagingFactory.CreateQueueClient(queueName); var brokeredMessage = queueClient.Receive(TimeSpan.Zero);
Is it configurable or do I need a lot of demand on the message bus?
source share