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
1 answer

Binding parameters for Azure Storage Queue

I follow the following tutorial to add messages to a queue using Azure Functions. https://learn.microsoft.com/en-us/azure/azure-functions/functions-integrate-storage-queue-output-binding#add-code-that-uses-the-output-binding It worked fine when I…
fhnaseer
  • 7,159
  • 16
  • 60
  • 112
0
votes
1 answer

Azure Queue and Function : Added message to queue but not automatically execute the function

I have the azure function running locally but whenever I sent messages to the queue, the function never execute the item in the queue. Only get trigger when I re-run the function. I have set the batchSize in host.json to execute the message one at a…
LittleFunny
  • 8,155
  • 15
  • 87
  • 198
0
votes
2 answers

Deserializing POCO types with same properties in Queue with QueueTriggerAttribute?

How to make it deserialize to original type? WebJobs SDK allows to specify the type of a POCO object and add QueueTriggerAttribute near it to make it function (the doc). Now it deserializes not to an original type but some other (from run to run it…
Artyom
  • 3,507
  • 2
  • 34
  • 67
0
votes
2 answers

QueueClient.OnMessage throws StackOverflowException during Worker Role Start up

I am trying to deploy my first Azure worker role and I have been running into this error when Run() method is called during service start up. An unhandled exception of type 'System.StackOverflowException' occurred in Unknown Module. I've tried to…
Patel
  • 399
  • 5
  • 12
0
votes
1 answer

how to insert to queue inside a queue trigger in a azure javascript function

i am implementing a queue trigger. what happen there is i receive url of pdf through the queue and i convert that pdf to png and i upload that png to azure blog storage. i want to add this new url of azure blob to a new queue. of course i can do…
0
votes
1 answer

Time triggered Azure Function and queue processing

I have a Function called once a day processing all messages in a queue. But I would like to also have the retries and poison messages logic as with the Queue Trigger. Is this somehow possible?
Stig
  • 1,974
  • 2
  • 23
  • 50
0
votes
1 answer

Can I use the azure webjobs sdk from a nodejs webapp?

I have a Azure web-app built using NodeJS and wanted to create a webjob triggered by a queue. Looks like this can be achieved using a QueueTrigger from azure-webjobs-sdk. I have found examples for Defining the webjob in C# Using a NodeJS based…
0
votes
0 answers

Unauthorized on proactive message to bot

Please take the following image into consideration, as it will assist in my explanation (please note the red section): The REST service inserts a new record into an Azure storage queue. Once in the queue, the rest of the flow happens as indicated…
0
votes
1 answer

Azure WebJob Queues are not triggering WebJobs

Azure WebJob Queues are not triggering WebJobs If I pass message in binary format to Queues? I have Pushed GOOGLE PROTOBUF Bytes as CloudMessage into the Azure Queue Storage. But, Azure Queue storage is not pinging and Passing that CloudMessage to…
0
votes
1 answer

Azure storage queue messages are moved all at once to poison queue after a period of time

Repro steps Add messages to the queue (around ~500 messages). Add a queue triggered function app which will process the queue messages. Expected behavior All the messages from the queue are processed. If an exception is thrown while processing a…
GicaGG
  • 56
  • 7
0
votes
1 answer

QueueTrigger templates not showing in Function App?

I'm trying to Create a function triggered by Azure Queue storage and following steps from this documentation - https://learn.microsoft.com/en-us/azure/azure-functions/functions-create-storage-queue-triggered-function However when I try to create…
mugzi
  • 809
  • 4
  • 16
  • 33
0
votes
2 answers

Azure ServiceBus. QueueClient. ReceiveBatch issue

I have Azure Service Bus setup with a bunch of queues on it. Some are partitioned. When I tried to read dead letter messages from one of those queues I've deferred messages, then did some massaging and then try to complete those deferred messages.…
fatherOfWine
  • 1,191
  • 16
  • 39
0
votes
0 answers

My AddToQueue Method does not work, queueName is set to Null

Below is my method when I break pointed the method, it reached the queueName local variable and was null there it does not perform the contents of the If. private void AddToQueue(OrderDetails orderDetails) { CloudStorageAccount storageAccount =…
Bmanzr
  • 13
  • 1
  • 8
0
votes
1 answer

How to send WCF Response to Azure queue

I have recently started working with Azure service bus. I am able to send and receive messages from queue using my console application and able to consume one WCF Service in my console app and then sending responses to azure queue. But i have some…
TechGuru
  • 399
  • 8
  • 20
0
votes
3 answers

If Azure function times out, is the trigger message put back on the Azure queue?

Or is that behavior only available when the Function errors out. This is for a Queue-triggered function.
Shane
  • 369
  • 1
  • 2
  • 13