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
4
votes
2 answers

Azure Queue Peek All Messages

I understand that Azure Queue is not strict FIFO. And Visual Studio Server Explorer shows only 32 messages. I have some 88 messages in the queue. Is it possible to peek through all the messages in an Azure queue with out dequeing any of it?
Srinivas
  • 2,479
  • 8
  • 47
  • 69
4
votes
1 answer

Azure Local Development Queue ConnectionString

I have created a new WorkerRole using the template for a QueueWorkerRole in VS 2013 and it creates code that looks like this: // Create the queue if it does not exist already var connectionString =…
Jeff Treuting
  • 13,910
  • 8
  • 36
  • 47
4
votes
4 answers

How can I get around the Azure Queue maximum time to live?

Azure Message Queue messages have a maximum time to live of 7 days. Ugh why? I'd like my message to have an infinite time to live and wait in the queue until I get around to processing it. If not for this bizarre 7 day limit Azure queues would be a…
BowserKingKoopa
  • 2,701
  • 3
  • 33
  • 40
4
votes
2 answers

Writing a listner to Azure Queue

I have seen most queue example as the polling mechanism . Is it possible to change it to listner of the queue. Because polling may affect the performance of the worker.
satish
  • 2,425
  • 3
  • 23
  • 40
4
votes
3 answers

Is it possible to get a message from an azure storage queue twice?

I know that if a worker fails to process a message off of the queue that it will become visible again and you have to code against this (idempotent). But is it possible that a worker can dequeue a message twice? Based on my logging, I seem to be…
Bryan
  • 857
  • 1
  • 11
  • 25
3
votes
1 answer

Azure queue and table storage transactions best practics

Using azure table storage I read about Entity Group Transactions within the same partition. Now what happens if I use the Azure Queue together with table storage. Is it possible to get handle a message from the queue, insert into table storage. If…
Rasmus Christensen
  • 8,321
  • 12
  • 51
  • 78
3
votes
1 answer

Azure Function Queue Trigger Gets Triggered Twice, Two Instances Running?

I have an Azure Function, with a queue trigger. The function must proces one queue message each time, one by one, sequentially. This is important, since the function uses an external OAuth API, with various limitions on requesting new access and…
TJ_
  • 629
  • 6
  • 12
3
votes
1 answer

Azure Queue Trigger reaches MaxDequeueCount immediately

I have an azure queue trigger set up: [FunctionName("TransformData")] public async Task Transform( [QueueTrigger("product-prices")] string message) { await TransformAndLoadData(message); } Whenever I add items to the…
Lukas
  • 162
  • 9
3
votes
1 answer

How do I get the count of messages in a particular Azure Storage queue in Azure Log Analytics

I am trying to get the count of messages in a particular queue from Azure Storage account using Log Analytics to ultimately publish on a dashboard. Thanks in advance for your help
anoopjohn
  • 518
  • 4
  • 18
3
votes
1 answer

How to specify content type as application/json while sending message to azure service bus queue in node js?

I am sending message to queue using @azure/service-bus package and sendMessages function as mentioned in here. When I am sending a javascript array [{ name: "Albert Einstein", "company": "xyz" }] it is giving an error TypeError: Provided value for…
evelyn
  • 53
  • 5
3
votes
1 answer

Maximum CloudQueueMessage payload size issue

According to MSDN, the Message payload may extend up to 8KB (8192 bytes): The AddMessage method adds a message to the back of the queue. A message may be up to 8 KB in size. Its content must be in a format that can be encoded with…
Necrolis
  • 25,836
  • 3
  • 63
  • 101
3
votes
1 answer

Azure Functions scaling and concurrency using Queue triggers and functionAppScaleLimit on the Consumption Plan

I have an Azure Function app on the Linux Consumption Plan that has two queue triggers. Both queue triggers have the batchSize parameter set to 1 because they can both use about 500 MB of memory each and I don't want to exceed the 1.5GB memory…
ddx
  • 469
  • 2
  • 9
  • 27
3
votes
1 answer

Reading STOMP feeds from an Azure service

I'm wondering if it's possible to connect to a STOMP feed from Azure and process the data i.e. add it to a database or save in a Storage Account. Context: Network Rail have their openraildata feeds which are STOMP and instead of having a Virtual…
Liam
  • 439
  • 1
  • 4
  • 26
3
votes
2 answers

Can Azure Key Vault be used with Functions to store the connection string for queue triggers?

I was able to use the Key Vault inside a function app as described here but when I tried to use the Key Vault to hold the connection string of a function with a queue trigger I have issues with the storage account connection string. The function…
pretzelb
  • 1,131
  • 2
  • 16
  • 38
3
votes
0 answers

Azure Storage Emulator's queues not loading

I'm new to Azure Storage and I've been having a problem creating and working with queues locally. So, firstly I wasn't able to make the Azure Storage Emulator run, so I've changed the config to look like this: