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

Performance impact of calling CreateIfNotExistsAsync() on a Azure queue

Should I call CreateIfNotExistsAsync() before every read/write on Azure queue? I know it results in a REST call, but does it do any IO on the queue? I am using the .Net library for Azure Queue (if this info is important).
faisal
  • 1,327
  • 10
  • 19
8
votes
1 answer

Should I put my events inside a queue after getting them from Azure Event Hub?

I'm currently developing an application hosted on Azure that uses Azure Event Hub. Basically I'm sending messages (or should I say, events) to the Event Hub from a Web API, and I have two listeners: a Stream Analytics task for real-time analysis a…
ken2k
  • 48,145
  • 10
  • 116
  • 176
7
votes
2 answers

Windows Azure Service Bus Queues - MessageSender or QueueClient?

Backstory: A few months ago (when I was new to Azure Queues and the SDK tools out there) I Googled "how do I do this" and "how do I do that"... here is where I am today: I'm using a QueueClient (Microsoft.ServiceBus.Messaging -…
Timothy Khouri
  • 31,315
  • 21
  • 88
  • 128
7
votes
2 answers

Hidden messages in Azure storage queue

Sometimes there are some messages in Azure Queues that are not taken in charge by Azure Functions and also are not visible from StorageExplorer. These messages are created without any visibility delay. Is there any way to know what do those…
7
votes
2 answers

Is it possible to send azure queue messages to an endpoint

Is it possible to send azure queue messages to an endpoint url?
mahesh sharma
  • 998
  • 1
  • 7
  • 21
7
votes
2 answers

Listen to Queue (Event Driven no polling) Service-Bus / Storage Queue

I'm trying to figure out how can I listen to an events on a queue (especially an enqueue event). Say I have a Console Application and a Service Bus Queue/Topic, how can I connect to the Queue and wait for a new message ? I'm trying to achieve this…
Ron
  • 1,744
  • 6
  • 27
  • 53
7
votes
2 answers

Asynchronously posting to Azure Queues

I try to enqueue messages in Azure Queues asynchronously like this: private async Task EnqueueItemsAsync(IEnumerable messages) { var tasks = messages.Select(msg => _queue.AddMessageAsync(new CloudQueueMessage(msg), …
zafeiris.m
  • 4,339
  • 5
  • 28
  • 41
7
votes
1 answer

Message type based routing with Azure Service Bus

What is the simplest approach to achieve strongly typed message based routing with Azure Service Bus. Assuming we only have one consumer and are using Service Bus Queues, is it easier to create a queue per message type (in our case, Event messages),…
Ben Foster
  • 34,340
  • 40
  • 176
  • 285
6
votes
1 answer

Application Insight correlating requests across services and queues

I understand that I could use the clienttrackid and setting this in a header, but I'm unsure of what is handle by application insights / azure and what I need to to manually. This is the case (I would like to see logs from ServiceA, FunctionA,…
6
votes
2 answers

How to set message time to live unlimited in azure service bus queue?

I am trying to create azure service bus queue using azure-sdk-for-node but not able to find the resource to set time to live unlimited . Here is my sample code : var queueOptions = { MaxSizeInMegabytes: '5120', DefaultMessageTimeToLive:…
6
votes
1 answer

Azure - Creating a queue keep returns "(400) bad request"

I am trying to simply create a new Storage Queue with Azure but it keeps crash without explanation, creating tables worked just fine, this is the relevant code: private CloudTable userTable; private CloudTable petTable; …
Guy Ben-Moshe
  • 874
  • 1
  • 15
  • 23
6
votes
1 answer

Azure WebJob QueueTrigger How DeleteMessage after get it?

I have one webjob on azure, with a QueueTrigger. The job is long (More than 30 minutes) public async static Task ProcessQueueMessageAsync([QueueTrigger(QUEUENAME)] string iJobId) { //doing my long job } My problem is how delete the message in the…
Julian50
  • 2,462
  • 1
  • 21
  • 30
6
votes
3 answers

Tasks that need to be performed on a certain date in Azure

I am developing an application using Azure Cloud Service and web api. I would like to allow users that create a consultation session the ability to change the price of that session, however I would like to allow all users 30 days to leave the…
user1790300
  • 2,143
  • 10
  • 54
  • 123
6
votes
2 answers

QueueTrigger Attribute Visibility Timeout

If I were to get a message from queue using Azure.Storage.Queue queue.GetMessage(TimeSpan.FromMinutes(20)); I can set the visibility timeout, however when trying to use Azure.WebJobs (SDK 0.4.0-beta) attributes to auto bind a webjob to a…
GUID_33
  • 800
  • 1
  • 8
  • 21
6
votes
3 answers

Azure WebJobs QueueTrigger not triggering

I'm trying to find what I'm doing wrong regarding an Azure WebJobs QueueTrigger method that should be triggered from an Azure Storage Queue. I've read a couple of documents (as in blog posts / msdn articles). But I'm still not clear. Main question /…
Dominic St-Pierre
  • 2,429
  • 3
  • 27
  • 35
1
2
3
28 29