Create Environment based Queue inside storage account for webjob
I have one storage account for web job to manage queues but I am working with multiple environments (dev, dev-feature, stage). So how can I create web job queues based on environment inside inside storage account.
Azure Queue Storage
Azure App Service
How to get metrics for individual queue in Azure Storage Queue?
Hi, How do i get metrics of a specific/individual queue in the Storage account Queues? Is that possible? The documentation I saw mentioned only are for the entire Queue Storage but could be wrong. Example from the Storage account portal…
Azure Storage
Azure Queue Storage
Using PowerShell running AddMessageAsync results in WaitForActivation
I created a queue: PS C:\Users\Catherine Bundy> $queue |select -Property * CloudQueue : Microsoft.Azure.Storage.Queue.CloudQueue Uri : https://augustgophers.queue.core.windows.net/myqueue …
Azure Queue Storage
Azure Storage Queue: After visibility time out of message, message appears at the end of the queue
I need to retrieve one message from the front of queue & process it. If for any reason message is not processed the message should reappear on the front of the queue as 1st message, after visibility timeout. However I am observing a different…
Azure Queue Storage
write to file sequentially using azure queue
new to queues here. I have many tasks in a queue where each of them consist in appending data to a file through a function app. I want to perform those tasks sequentially. My understanding from the docs is that I need to set batchSize to 1 in…
Azure Functions
Azure Queue Storage
How to allocate azure storage a static public IP address?
How do I set a public static IP address to a storage account? I have 'blobstorageaccountname.blob.core.windows.net', I want to choose a static IP Address, just like I would for an Azure VM. In Azure portal | Storage | Networking | Custom domain:…
Azure Storage
Azure Blob Storage
Azure Queue Storage


Storage queue message size limit
Azure documentation states that Storage queue message cannot exceed 64 KB. see here A queue message can be up to 64 KB in size But in article that compares service bus and storage queues, it says that Azure supports large messages by…
Azure Queue Storage

Is Azure Storage Queues completely pull based?
I see in the doc here. https://learn.microsoft.com/en-us/azure/service-bus-messaging/service-bus-azure-and-service-bus-queues-compared-contrasted Azure Storage Queues are not push based. Does this mean that the message consumer has to always…
Azure Functions
Azure Queue Storage


Best Practices: On-Premises .NET Core App Checking Storage Queue for Messages
I'm seeking best practices guidance for a .NET Core app, running on an on-premises server, that checks for messages in an Azure Storage Queue. When a message is detected, an action is performed on the on-premises server. (We do not want to use Azure…
Developer technologies | ASP.NET | ASP.NET Core
Azure Queue Storage
Developer technologies | .NET | .NET Runtime
Azure App Service
Azure Queue Storage - How to get the log of who sent the message
Hi, I'm not sure if this is possible. Can azure queue storage, logs the sender of the message? Like IP Address. TIA
Azure Queue Storage
`Object reference not set to an instance of an object` in Azure Functions Queue Trigger
Scenario: How to use the Queue trigger to get the message from the queue and add that message details to the entity of Azure Table service within the storage account? Exception: Code: .NET 3.1 Azure Functions - Queue Trigger Order.cs …
Azure Table Storage
Azure Functions
Azure Queue Storage
Developer technologies | C#

Move azure table and queue storage to another region
Hi Team, I've followed the below article and moved my storage account to another region and transferred all blob and file storage data to the target storage account successfully using the AzCopy tool. …
Azure Table Storage
Azure Queue Storage
Azure storage not compiling under clang with -std=c++20 after upgrade to VS2022
A simple program that does nothing but include headers shows this. Set compiler to clang. Turn off vcpkg and set standard level. #include <iostream> #include <was/storage_account.h> #include <was/queue.h> int main() { std::cout…
Azure Queue Storage

Storage file, queue and table services
Hello, I created a storage account and had few checks to code for. Ensures file shares do not allow full write delete or read ACL permissions Ensures tables do not allow full write delete or read ACL permissions Ensures queues do not allow…
Azure Table Storage
Azure Files
Azure Storage
Azure Queue Storage

Best Way to Post Appointments from SQL database to Exchange Via EWS
We have a web-based calendaring app that creates large groups of appointments and all-day events, stored in an Azure SQL database, and then posts them to Office 365 Outlook primary and secondary calendars using EWS. Processing and posting the events to…
Azure SQL Database
Azure Queue Storage
Exchange | Exchange Server | Development
Authentication Error when trying to access Storage Queue using service principal programatically
I'm trying to access storage queue using service principal programatically using spring boot . Ending up with this error. com.azure.storage.queue.models.QueueStorageException: If you are using a StorageSharedKeyCredential, and the server returned an…
Azure Storage
Azure Queue Storage
Microsoft Security | Microsoft Entra | Microsoft Entra ID
What are the possible ways available to Scale Out/In VMs based on number of outstanding requests of Azure storage queue?
I have messages in Azure storage queue. I want to Scale Out/In vms on the basis of number of requests present in Azure storage queue.
Azure Queue Storage
Azure Virtual Machine Scale Sets


File, Table Queue Service ACL and Log Container Access
Hello, I'm working on azure cspm integration for a client. Had few checks for which I couldn't figure out the endpoints with respect to my code. Since, it is for my client, I can't really mention the name of the storage account in the code. Rather…
Azure Table Storage
Azure Files
Azure Storage
Azure Blob Storage
Azure Queue Storage

Are Storage Queue messages encrypted in transit
When using the QueueClient in the C# .NET Core Azure.Storage.Queues v 12.5 library, are the messages encrypted in transit by default? What port does the traffic go over? Having a heck of a time finding anything in the documentation about this. Thanks!
Azure Queue Storage
Batch size is not honored by Azure functions locally
Hi, This is my host file for Azure queue functions { "version": "2.0", "extensions": { "queues": { "batchSize": 32, "newBatchThreshold": 32 } } } I would expected 64 messages…