391 questions
0 votes
0 answers
107 views
Azure Functions (Flex Consumption) – Storage Queue trigger not firing when message added
I’m working on an Azure Functions project using the new Flex Consumption model with @azure/functions in TypeScript. I have two functions: Producer – sends a message to a storage queue: export async ...
0 votes
1 answer
89 views
It is possible to delay the pickuptime between messages in an Azure Storage queue
I am currently working on an Azure Function app. It is triggered by a storage queue. The function itself picks up the message, executes a MS Graph API call and does some small logic. I currently have ...
0 votes
0 answers
357 views
How to mock Azure.Storage.Queue 'QueueClient' in unit test?
I am quite new to the C#/.NET language/framework, and am having some issues unit testing a class and its methods where a QueueClient from the Azure.Storage.Queue package is initialized in the ...
0 votes
1 answer
123 views
QueueTriggered Azure function failing to read queue messages
I have an Azure Storage Queue that gets messages from an IoT device. The messages are not Base64 encoded, compressed or anything else. They are plain old UTF-8. Here's a sample message: {"id"...
0 votes
1 answer
317 views
How do I create an event subscription that writes to a storage account queue in Azure?
I am getting a permissions error message when I try to create a new subscription for my event grid topic. I'm trying to write to a storage account queue. I have created a user assigned managed ...
0 votes
1 answer
192 views
Error: "This request is not authorized to perform this operation" when using SASTokens to access Azure Storage Queues using Azure Storage SDK v12
I am using C# code like this (see below) to read/add/process Azure Storage queues using Storage SDK v12 and SAS Tokens. No matter what I change, I always have the same error: "This request is not ...
0 votes
1 answer
131 views
How to use REST API to delete message on Azure Storage Queue in bash?
I would like to know how to delete a message on Azure Storage Queue. Currently I keep getting the following error. <?xml version="1.0" encoding="utf-8"?><Error><Code&...
0 votes
1 answer
64 views
send queue data with custom expiration in python
Currently I'm trying to send data to a azure queue in storage. I am able to send data but I am unable to custom the expiration time like to 10 seconds 1 day like that. But in azure portal able to do ...
0 votes
1 answer
298 views
Azure Function Storage Queue Trigger Not Working
I've gone through similar questions but I still can't understand why my Storage Queue Triggered Powershell Function isn't firing. I have a function in my Function App that throws a message on a ...
0 votes
1 answer
162 views
Python Azure Function in Vnet not being triggered by msq in a Storage Queue
I have an issue in Azure where an Azure Function with a version 2 function listening to a Storage Queue trigger is not being triggered when a message is placed on the Storage Queue. Both the Azure ...
0 votes
2 answers
81 views
Azure Storage Queue JavaScript TTL
The TTL isn't being set on messages added to the queue using this code, and I can't fathom why that might be, even after trying multiple different iterations. Stack Overflow wants me to add more ...
0 votes
1 answer
2k views
Azure Functions with Python - No job functions found
I'm trying to make an application (let's call it "uploder") that takes in Azure Storage Queue messages, does some work and has no output. However, I'm getting this generic error that's ...
0 votes
1 answer
513 views
How to create connection to create - queue item - HTTP Trigger - local - Azurite - Azure Queue Storage
I installed Azurite and started ( assuming the command is correct.) azurite --queueHost 127.0.0.1 I created an outqueue using Azure Storage Explorer I want to test/use this function const { app, ...
1 vote
1 answer
128 views
Azure QueueTrigger Function w/CosmosDB Output Binding Failing
I have a queue trigger Azure function (included below) that reads from and writes to a CosmosDB. I know that the function itself is working, as I do see some records being written to the database. But ...
0 votes
0 answers
184 views
Catch "request body too large" error in python on azure functions
Azure storage queue has a message size limit of 64KB. I want to catch this error when it occurs in azure functions. For that I use the following code: @app.blob_trigger(arg_name='inputFile', path=&...