Error displaying all messages in a storage queue

Fabrício Fortaleza 145 Reputation points
2023-12-11T18:39:42.19+00:00

I have a storage queue and I use Azure Storage Explorer to view its content. However, the app is limiting the number of messages I can view, and it seems to be interfering with the arrival of new messages. It's as if the storage queue becomes 'full'. I had to delete some messages to make room for new ones to arrive. These new messages that arrived, their insertion time in the queue appears as if I received them before, but I couldn't view them. Does anyone have any tips? I checked, and it's not a matter of storage account space, the messages that should appear simply don't show up.

Azure Storage Explorer
Azure Storage Explorer
An Azure tool that is used to manage cloud storage resources on Windows, macOS, and Linux.
231 questions
Azure Queue Storage
Azure Queue Storage
An Azure service that provides messaging queues in the cloud.
97 questions
{count} votes

Accepted answer
  1. Luis Arias 4,796 Reputation points
    2023-12-11T21:05:25.74+00:00

    Hi Fabrício,
    This is a expected behavior with Azure Storage Explorer and others tools to query it , so only allows you to view up to 32 messages in a storage queue at a time.

    The maximum number of messages that may be retrieved at the same time is 32.

    This is a limitation from the REST API itself. If you want to fetch more messages, you would need to make multiple HTTP requests with each request asking for a maximum of 32 messages from the Storage Queue service.

    https://learn.microsoft.com/en-us/rest/api/storageservices/get-messages

    Luis

    1 person found this answer helpful.
    0 comments No comments

0 additional answers

Sort by: Most helpful