0

I am using Windows Azure Service Bus. I created a Topic and am using a subscription to which partners send messages to. What I notice is that the "Message Count" stays at 1923 and does not come down. When a new message is posted to the queue (or subs in this case), it goes up to 1924 and then my service polls the message and it will bring it back to 1923. It looks like 1923 messages appear to be stuck and unable to retrieve.

Why does this happen and how do I retrieve these messages?

Mage
  • 969
  • 2
  • 13
  • 23
  • Check this post as I had same issues: http://stackoverflow.com/questions/25762485/azure-service-bus-queue-messages-got-stuck – jglassco Feb 04 '15 at 16:29

1 Answers1

1

I think the 1923 messages are present in the dead letter queue and those messages will not appear in the actual queue for you to retrieve You can use "Service Bus explorer" to check the messages that are present in the queues and dead letter queues. You can download the Service bus explorer in the following path: http://servicebus.codeplex.com/

Happy Coding, -Vijay.

  • Anyway to get rid of these messages or at least look at what they are before deleting? – Mage May 19 '13 at 16:42