I'm getting the below exception in Windows Azure when I attempt to retrieve messages from the service bus.
Microsoft.ServiceBus.Messaging.ServerBusyException: The request was terminated because the entity is being throttled. Please wait 10 seconds and try again
The exception occures after calling the Receive
method:
QueueClient queueClient = _messagingFactory.CreateQueueClient(queueName);
var brokeredMessage = queueClient.Receive(TimeSpan.Zero);
Is this configurable or am I putting to much demand on the message bus?