Questions tagged [azure-queues]

Microsoft Azure (formerly Windows Azure before March 25, 2014) is a cloud computing platform and infrastructure, created by Microsoft, for building, deploying and managing applications and services through a global network of Microsoft-managed data centers. Azure Queue storage is used for transporting messages between applications as normally we can consider a MSMQ do that in cloud.

Azure Queue Storage is a service for storing large numbers of messages. You access messages via authenticated calls using HTTP or HTTPS. A queue message can be up to 64 KB in size. Queues are commonly used to create a backlog of work to process asynchronously.

Azure Queues documentation

Tagging Recommendation:

Use the tag, for all Azure Queue Storage-related questions.

425 questions
0
votes
0 answers

Access Storage Account Connection String Within Function Body

I have a queue trigger (for example): [FunctionName("Handle-Invoice")] [StorageAccount("StorageAccountConnectionString")] public async Task InvoiceQueueTrigger( [QueueTrigger("invoice-queue")] CloudQueueMessage…
Nick
  • 25,026
  • 7
  • 51
  • 83
0
votes
1 answer

host.json Settings Ignored For Service Bus Queue Triggered Function App Function

I'm attempting to lock down internal documentation for best-practices when a function that is triggered by a queue needs to call a 3rd party API where throttling may be a concern. I've followed all the documentation I can find, whether MS official,…
Fred
  • 381
  • 2
  • 13
0
votes
2 answers

Push to Azure queue overwriting message from Array?[node.JS]

I have an array with some Objects that I would like to send to a azure queue. I have a simple array with some data and a for that goes trough each element of the array and push it to the queue. Everything goes smooth but when I see the queue I can…
varVal
  • 27
  • 7
0
votes
1 answer

Trying to retrieve Message Text from Azure Queue using web api but message text is encoded. how do i remove encoding

when i retrieve something the output is encoded. QueueClient queue = new QueueClient(connectionString, "outqueue"); string value = await RetrieveNextMessageAsync(queue); return value; RetrieveNextMessageAsync: if (await…
Dhatri
  • 3
  • 2
0
votes
1 answer

Azure function to upload file time out

I have made azure function app and deployed to azure. The app will take zip file from specified container and unzip it to another container or specified container. My code is not uploading file after 5min says timeout value. Here is my error screen…
brijesh Patil
  • 77
  • 1
  • 7
0
votes
1 answer

set messagettl of a message in Azure Queue using python

I'm trying to post a message to azure queue service using python3 by making a POST request and specifying messagettl to -1 which indicates the message does not expire. In the doc…
marOne
  • 129
  • 2
  • 13
0
votes
1 answer

How do you manually dequeue a message using a Python Azure Functions QueueTrigger?

I'm using an Azure Functions Queue Trigger to read in a queue message and process work in Python. I have my batchSize parameter set to 1 to limit concurrency. In the Python code, I have an additional check to see if the work is ready to be processed…
ddx
  • 469
  • 2
  • 9
  • 27
0
votes
1 answer

Azure Functions functionAppScaleLimit of 1 isn't working as expected to limit concurrency on Queue Trigger

I have a Function App with multiple queue triggers set up and am trying to limit concurrency by setting functionAppScaleLimit to 1. After testing this, I'm getting timeouts because two queue triggers will execute at around the same time, but only…
0
votes
1 answer

Azure Queue trigger for Azure Functions: configure minimum polling interval

I need to process a task queue and I wonder if Azure Queue will work for my case. Task execution implies querying a rate-limited API and for that reason I want polling to happen every X seconds (can be slower, but must not be faster than that).…
Max Ivanov
  • 5,695
  • 38
  • 52
0
votes
1 answer

Apache Camel Azure queue: Message body is empty while sending message

I am trying to send a message to Azure Queue using Apache Camel, route code is: from("direct:testMessage") .process(exchange -> { exchange.getIn().setBody("test message"); }) …
Saud
  • 408
  • 6
  • 16
0
votes
1 answer

Messages in azure queue vanish

I hope someone here can shed a little light on an issue that I have encountered twice now. I have an ERP system in which invoices are created, when these invoices are ready to be sent, I then transfer them to our invoicing system through a cron…
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

Special character in azure storage queue message

I have this simple code: QueueClient azQueue = new QueueClient(@"", "test-queue"); azQueue.SendMessage("test®test"); and it fails with message: "Retry failed after 6 tries." If I remove ® character from string…
0
votes
1 answer

Sync operation in async method - how to fix result not outputted correct and complete?

In this example. When I run this in the console, I dont get anything in MyList property so nothing is displayed on the screen. BUT, if I add a breakpoint, I do get the expected content in the list. Possibly because the method where MyList is…
Sami
  • 393
  • 8
  • 22
0
votes
1 answer

Azure function with .net core 3.1 not triggering from Queue storage

I am trying to trigger an Azure function when a new queue message is added. Both the storage account and the azure function are in the same region. For my Azure Function, I clicked on Add, Azure Queue Storage Trigger, I gave my function a name, and…