Azure Queue Storage

Effectively scale apps according to traffic.

Web Resources

4/15/2024, Azure PaaS Blog
Background This article describes how to migrate all Azure Storage Queues data between two different storage accounts.   For this, we will use Azure Storage SDK for Python to copy all queues (and the respective data) from one Azure Storage Queue to another Azure Storage Queue. This approach will keep the data in the source queues, and will create new queues with the respective data in the destination Azure Storage Queue.   This script was developed and tested using the following versions but it is expected to work with previous versions: Python 3.11.7 azure-identity (version:...
8/30/2023, Azure PaaS Blog
The blog points to performing simple Queue REST API operations such as List, Create, Get, Put and Delete using CURL utility.   Let’s look at some of the CURL command syntax to perform REST API operations and will be making use of SAS as the auth scheme for most of the operations. We need to take care of the pointers below while performing the operations via CURL:   Ensure the URL is formed correctly as per the operation you are trying to perform. The header needs to be passed and can be done using “-H” parameter. Ensure you are appending/removing extra ‘?’ to the SAS token in the URLs...