Problem with BlobTrigger in a self hosted k8s runtime using Managed Identities
I am trying to setup managed identities so that a BlobTrigger function can access a storage container. The blob trigger function is hosted in a k8s runtime and not directly by Azure Functions. I have followed the docs as far as I can go but the pod is…
Excercise steps needs to be fixed
Hello, in this excercise:https://learn.microsoft.com/en-us/training/modules/discover-azure-message-queue/6-send-receive-messages-service-bus under the "Retrieve the connection string for the Service Bus Namespace" section, it says "3.…
Logic App Queue trigger how to check more often than once per minute?
Hi all, I am looking for a solution how to check Queue from the logic App more often. I see the Logic app allows you to set up Queue to be checked every n-second, but when I set it up for every 3 seconds it still checks only once every minute. If you…
Inconsistent Data Upload and Processing on Azure
I am experiencing inconsistent behavior while uploading and processing data on the Azure portal. I have two functions in one function app: one is an event-based trigger, and the other is a queue-based trigger. I am uploading data from NAS to an Azure…
Error displaying all messages in a storage queue
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…
Storage Account > Network when public access is disabled
Hi I have disabled the Storage Account i.e. Public network access to Disabled However it still allows me to make successful Queue - Get call from internet (GET…
Connecting to Azure Storage Queue using Celery
Hello, I am trying to use Celery with Azure Storage Queues as a message broker. I have written the following code to connect to the queue: import os from celery import Celery from kombu.utils.url import safequote ## CELERY…
Azure Function App processing multiple queue messages at a time despite batchSize set to 1
I have an Azure Function written in Python that's meant to process messages from an Azure Storage Queue. In my host.json file, I have set "batchSize": 1 and "newBatchThreshold": 0 under the queues settings. This should mean that the…
About Azure Functions maxDequeueCount in host.json
Hi, I'm using Azure Functions (Python) and configuring to executed the function just once so that it terminates and send the message to poison queue. I'm setting maxDequeueCount to one, but it won't work. This is my host.json file { …
Why are not all messages processed by the Azure Function Queue Trigger?
Hello, I have an Azure Function Queue Trigger. Messages are sent by another Azure function to the queue with a visibility_timeout parameter to postpone the processing of these messages: queue_client.send_message(content=message,…
metadata_storage_path error in .NET with Azure AI Search.
Right now from my post api I am storing the address like UploadEmailAsync() in Azure Queue. I have tried saving it with and without JSON format but path which we use for Filters in Azure AI Search requires the base64 converted link. Right now i have…
How to disable Storage Queue logs from spamming?
I get so much of Request [xxx] GET xxx and Response [xxxx] 200 OK (00.0s) I tried multiple of logLevel setting "logLevel" "Host.Results" "Function" "Host.Aggregator" "Azure.Storage.Queues" }, …
How to get queue depth/length of azure queues when it exceeds int.MaxValue?
Currently we use QueueProperties.ApproximateMessagesCount to get the queue depth. Problem is the property is of type "int" and our queues can exceed int's max value. We rely on queue depth for important infrastructural/operational decisions. Is…
when there is a message in a queue (v2) trigger only fires once a minute instead of given time
Hey, We have set-up a queue that gets a message every x seconds which we want to read out in another logic app. This is our trigger: `"triggers": {` "When_there_are_messages_in_a_queue_(V2)": { …
Is there a timeout on running azure container instances
Hi, I'm running a python app on a container instance that's triggered by a queue storage message. I wondered if there's a timeout on the function that processes the message?
Trying to put message in queue & getting 405
Hi, I have a console application using .Net 5.0. I have a message that needs to be pushed to Azure Queue. In response, I am getting 405 The resource doesn't support specified Http Verb. I have tried Base64 encoding as well. sendMessage method, by…
How to set "Message never expires" expiry for queue message in Storage Queue using powershell?
Hi, I have been trying to set the "Message never expires" expiry for my queue message from PowerShell but I am getting an error when trying to do it. The code looks like this: $message = 'Some random…
getting [Errno 11001] getaddrinfo failed when sending queue message
I am using azure.storage.queue to add message into queue. connect_str = self._config.GetValue( 'azureQueue', 'AZURE_STORAGE_CONNECTION_STRING') q_name = self._config.GetValue( 'azureQueue',…
Why is my re-deployed Azure Function App not recognizing items put on a queue?
So I was getting an error after a long day of fighting with PowerShell, and in frustration, I just decided to delete a working Function App (in dev, I wasn't that on edge) and re-deploy it. This is the error I was getting -…