Questions tagged [queuetrigger]

62 questions
0
votes
1 answer

Azure queue trigger error using .Net.Sdk.Functions 3.0.13: Error indexing method 'Function1',Storage: No valid combination of account info found

I cannot get a new servicebus queue trigger to run even after reading many posts on this error. I have not added any logic to the solution yet, simply trying to get the generated shell to run correctly. It is built in Core 3.1, using the…
0
votes
1 answer

Is this possible to set the “QueueTrigger”-value during initial load of a Azure WebJob, based on a value in a appsetting.json?

Standard Azure Storage Queue trigger line … public async void ProcessQueueMessage([QueueTrigger("queue-abc")] string message, ILogger logger) Question: I would like to set the “QueueTrigger”-value (queue-abc) during the initial load of a Azure…
0
votes
1 answer

queueTrigger function not firing

I have an Azure ServerLess C# project that I deployed out to azure with 2 functions both that should be trigger by their corresponding queues. I noticed only the first function firing but not the second one. All my settings are correct but I noticed…
Anthony R
  • 89
  • 1
  • 10
0
votes
1 answer

AzureFunctions: How to make a sync call to a QueueTrigger Function for an automated functional test

Let me introduce the scenario: I need to test an AzureFunction with a queue trigger: [FunctionName("AFunction")] public async Task DispatchAction([QueueTrigger("queuename")] string message) { await DoMyLogicAsync(); } The test needs to be run…
0
votes
2 answers

Return Table Data in Queue Trigger function

I have been trying to return Table Storage rows back in Queue Trigger Function URL, But could not getting success. Below is my code. public static async Task> Run([QueueTrigger("send-patches-list", Connection =…
bhupinder
  • 315
  • 1
  • 6
  • 23
0
votes
1 answer

Azure Function with QueueTrigger: is it possible to configure only the Storage Account Url and access the Queue using a Managed Identity?

I've defined this function: [FunctionName("My_QueueTrigger")] public Task RunAsync([QueueTrigger("my-queue-name", Connection = "AzureWebJobsStorage")] string text) { // code here... } And the AzureWebJobsStorage (on Azure) contains the following:…
0
votes
1 answer

Why Azure QueueTriggered function app throwing Timeout exception?

I have deployed a QueueTriggered function app on to Azure portal. But it seems like sometimes throwing Timeout exceeded exception. I got this error and thought of changing the functionTimeout value from 30 mins to 2 hrs. But still it's giving me the…
shary.sharath
  • 649
  • 2
  • 14
  • 29
0
votes
1 answer

Send data to Azure Functions using QueueTrigger from a Nuget package

I have been testing my Azure Functions using a QueueTrigger. I tested my queue by using the following code to put something on the queue. CloudStorageAccount storageAccount =…
Vivendi
  • 20,047
  • 25
  • 121
  • 196
0
votes
3 answers

How to create a Microsoft Team using a Queue Triggered Azure Function writed in PowerShell?

I want to create a Team by using an azure function triggered by an Azure Queue. Unfortunetly when I run the code it is not working inside the Azure Function. I'm wondering. Is there a way to create a Microsoft Team using PowerShell inside an Azure…
0
votes
1 answer

Azure Queue Trigger Functions Not picking the queued message

The queue function is working fine in the developer machine. But once published to Azure, after a day or two, the function is not picking the queue message. the queue message is displayed in the Storage Account queue and not dequeued. When we are…
0
votes
1 answer

Process multiple messages at once in Azure WebJobs

I looked into this post to grab multiple messages at once in a single webjob execution (to accumulate the results of multiple messages). However this api: Microsoft.Azure.WebJobs.Extensions.GroupQueueTrigger does not provide documentation about,…
0
votes
1 answer

Azure Queue Trigger - Dequeue rate limit

I have a Azure queue trigger app. It tries to process message asap but when I have 1000s of message in the queue I want to limit number queue messages it process per second. Is there a way to setup limit? My goal is to slow down the rate at which my…
0
votes
2 answers

Azure Queue Trigger function

How does Azure Queue triggered function app decides whether the method succeeded or not?
Fred
  • 41
  • 1
  • 6
0
votes
1 answer

Azure Function App process time can it be extended by extending the QueueMessage's invisibility until it is processed?

I am working with Azure Function Apps in Python, that has two Functions HTTPTrigger & QueueTrigger, in the QueueTrigger I call my custom code, which takes more than 10 mins to process. I changed it from 5 mins to 10 mins in host.json…
0
votes
1 answer

Will Queue Trigger Auto retry after meet function timeout

My situation is. Function timeout is set 1 hour Function 1 start and takes 2 hours to complete Function 2 start after 30 mins from Function 1 When function 1 reach the timeout, it also interrupts the function 2. I want to know if the function reach…