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
6
votes
3 answers

Best practices for (over)using Azure queues

I'm in the early phases of designing an Azure-based application. One of the things that attracts me to Azure is the scalability, given the variability of the demand I'm likely to expect. As such I'm trying to keep things loosely coupled so I can add…
John
  • 5,452
  • 8
  • 37
  • 37
6
votes
2 answers

Azure Storage browsing client software options

As far as I know, these are the only clients available to browse Azure Table Storage, Queues and Blobs: Visual Studio Server Explorer: This is great, but we need standalone software (for testers, analysts, etc.) Cerebrata Azure Explorer: $125 per…
6
votes
1 answer

Azure .NET Component Lifetime (CloudQueueClient, CloudQueue etc.)

If I am adding Windows Azure queue items or blob storage references from an MVC application using the .NET SDK, how long should each component stay about? For queues we have CloudStorageAccount, CloudQueueClient and CloudQueue. For blob storage, we…
Paul Hiles
  • 9,558
  • 7
  • 51
  • 76
5
votes
1 answer

Limit number of message process attempts in Azure storage queue

I need to keep track of how many failed attempts have been made to process a message in an azure storage queue and delete the message after N unsuccesful attempts. I have searched, but have not found any particular property that does this…
AJC
  • 1,853
  • 1
  • 17
  • 28
5
votes
2 answers

Azure Queue unique message

I would like to make sure that I don't insert a message to the queue multiple times. Is there any ID/Name I can use to enforce uniqueness?
Philip
  • 151
  • 2
  • 9
5
votes
1 answer

Multiple Threads in an Azure Worker Role and Storage Queue Access

I am planning to implement an azure worker role which can start multiple threads. Each thread may want to read from or write to a storage queue. For different worker role instances, race situations are not the case. But, is it safe to simultaneously…
delete_this_account
  • 2,376
  • 7
  • 23
  • 31
5
votes
2 answers

What are the differences between Azure SignalR and Azure Service Bus

Microsoft Azure offers both Azure SignalR services and Azure Queue services. What I can't find is what are the pros/cons of using one versus the other. Could you either provide those differences here or provide a link to a document or web page that…
Chris Ward
  • 771
  • 1
  • 9
  • 23
5
votes
4 answers

Database Queues and Queue Processing

I am currently in the process of putting together a reference architecture for a distributed event-based system where events are stored in a SQL Server Azure database using plain old tables (no SQL Server Service Broker). Events will be processed…
user280610
5
votes
1 answer

Setup configuration and run azure queue trigger function locally

I am trying to run an azure queue trigger function locally. I installed Azure Storage Emulator and ran the command "AzureStorageEmulator.exe init" to create "AzureStorageEmulatorDb59" database on the "(localdb)\MSSQLLocalDB" server. In my azure…
suvenk
  • 467
  • 1
  • 5
  • 24
5
votes
1 answer

Azure Function Queue trigger: how to set time delay for dequeue message

I have an Azure Function which listens to azure queue and, for example, something wrong. It re-adds a message to the queue again. But after 5 times message will be moved to poison queue. I want to re-add a message to queue with a delay. For example,…
Oleg Sh
  • 8,496
  • 17
  • 89
  • 159
5
votes
1 answer

How to limit concurrent Azure Function executions

I've seen this problem expressed a lot but I've yet to find a working solution. In short, I periodically have a large batch of processing operations to be done. Each operation is handled by an Azure Function. Each operation makes calls to a…
vargonian
  • 3,064
  • 3
  • 27
  • 36
5
votes
1 answer

Azure Function used to write to queue - can I set metadata?

I can see from this page that you can access a queue message metadata properties simply enough when they are used as a trigger, but I want to do the opposite. I have an Azure function which writes messages to a queue, but it current has the default…
LDJ
  • 6,896
  • 9
  • 52
  • 87
5
votes
1 answer

Managing Lots of Azure Queues

Part of my application includes a "chat" system. I maintain a queue for each user. Messages to the user are placed in the queue, and the user's software periodically polls a rest service for new messages, at which point the queue is pumped for…
Steve
  • 31,144
  • 19
  • 99
  • 122
5
votes
1 answer

Configure QueueTrigger per queue using Azure queue storage

I have two differents scenarios to process 2 different types of queues using Azure queue storage. I want to set a queue to run one after another, and the other to run simultaneously. I've been looking at the documentation and I can apply the…
pedrommuller
  • 15,741
  • 10
  • 76
  • 126
5
votes
2 answers

Scalable SignalR + Azure - where to put SignalR, and should I be using Azure Queues?

I'm developing an application that has various types of Notifications. Examples of notifications: Message Created Listing Submitted Listing Approved I'd like to tie all of these up to SignalR so that any connected clients get updates in…
RobVious
  • 12,685
  • 25
  • 99
  • 181
1 2
3
28 29