Content
Connect environment variables from Azure AKS to helm using Springboot application
Read system environment variable on what stage the application is currently running using Helm in spring boot application for AKS Cluster and instances also its connected to Azure storage account and Azure Storage queue. Can anyone please help me to…


No permission in Microsoft learn sandbox to create resource group
I am working on the Microsoft learning path Discover Azure Messasge Queue. I have started a Sandbox for my Companys Azure account and this account is using the sandbox directory. The Concierge Subscription applies to my account and directory. Now I…
Control Azure Service Bus Consumer to start or stop listening from the Topic in spring boot
What I want to Achieve - Control Service Bus Consumer to start / stop receiving messages from queue/topic. Below is a detailed explanation. Currently I have integrated Azure Service Bus in my application and we listen message as soon as spring boot…


My Azure Function in Python v2 doesn't show any signs of running, but it probably is
I have a simple function app in Python v2. The plan is to process millions of images, but right I just want to make the scaffolding right, i.e. no image processing, just dummy data. So I have two functions: process with an HTTP trigger @app.route, this…
Event Grid - Deliver events using private link service - AuthorizationFailure
Hello, We are trying to setup event grid to deliver events to azure storage queue following this documentation https://learn.microsoft.com/en-us/azure/event-grid/consume-private-endpoints We are using a system topic that publishes BlobCreatedEvents…


Azure Storage Queue - Poison Messages
Quick question: in Azure storage queues, when a message is moved to a poison queue, does the poison message get a new Message ID or is the original one preserved? Thanks, Pete


Unable to Add message to azure storage queue
Hi , I am unable to add message to a particular queue from the portal. When i click on add message and try to add something its not showing up in the queue. But it is working for other queues in the storage account and newly created queues. …


AzureAD B2C - Users sync - Batch operation - Queues/Events
Hi, I was requested to implement an API to sync a single AzureAD B2C user to another IdP (Via API on APIM) on demand This seems easy work for one single user at a time and on on demand and cab be a synchronous operation However I was…
Connection Issues Using Access Keys - Failing Locally not on azure
I have a WebJob that is connecting to a queue on a storage account recompfiles while I debugged 2 days ago everything worked, from yesterday (11/11/2022) it just stopped working with the error: Please make sure your credentials are correct The…


SendGrid Azure function runs locally but not in Azure
I have a queue triggered Azure function and it works perfectly locally. Emails are retrieved from the queue and sent when run locally. However when I publish from Visual Studio it does run. When I test in the portal it returns 404 Not found. I have…


What changed in delete message api v2?
Hello team. A question about updating documentation and api for deleting messages from Azure Queue. We use this api for a connector through which users can interact with Azure Queue. One of the customers contacted us with the following…


Is there a Azure service to send messages between a web app and an android app?
I am working on a MDM application with an android app client and a web interface. I am currently using Azure Stoarge Queue to get messages from the web interface to the Android app but it seems very inefficient. I have to poll the message queue in the…


Azure Queue Storage (QueueClient vs CloudQueue)
I have been using QueueClient to handle all functionality with the Storage Queue. I noticed in a few examples online that there is a CloudQueue, that has several more methods. What is the difference between the two? Why would you use one over the…


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.


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…


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 …


WindowsAzure.Storage || Performance
Would you please give a reference document on the performance enhancement taken into account by Azure Storage Queues client library for .NET ? Comparing Azure.Storage.Queues 12.11.0 to Windows Azure.Storage 9.3.3


Delete message from Azure Storage Queue using REST API
Hi, I am trying to simply Get a message off an Azure Storage Queue and then delete it using the REST API. I can retrieve the message and get a popreceipt but when I try and use this to delete the message, I keep getting, "The specified message…


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…


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…