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

Azure Queue change size after creating

I have a production Azure Queue created with the 1GB limit. Now I want to change this to 5GB. Is it possible to change this without deleting and recreating the queue?
user3547774
  • 1,621
  • 3
  • 20
  • 46
0
votes
1 answer

What is the difference between the ServiceBus/ServiceBusTrigger methodology compared to that of using QueueClient, when using Azure Bus Service?

So I'm currently trying to get a Azure Bus Service to work in which I create a Queue and then a message is put on the queue and then received else where, and some code is ran using the data the message passed through. I've got everything set up and…
0
votes
0 answers

Azure Queue job stop running without any exception

I have a job, which runs every 2minutes to check the queue and send queue messages to the 3rd party. It stops running in the middle without generating any exception or logs information. Other jobs within same worker role are running without any…
Amna
  • 603
  • 7
  • 30
0
votes
1 answer

azure queue service calls perfomance

I am newbie with Aure Queue service. According the examples which I've seen, there are 2 methods to retrieve messages, getMessage and getMessages. The worker role has a while loop which try to retrieve 1 or more messages per cycle. If there are no…
0
votes
1 answer

Azure "peek" the whole queue?

I have a queue of messages that I would like to read. Consider the following code, based on a queue of 100 items: queue.FetchAttributes(); var orderCount = queue.ApproximateMessageCount; while(orderCount > 0) { …
Adrian
  • 670
  • 10
  • 24
0
votes
1 answer

How to stop queue trigger execution on an Azure Webjob

I've an azure webjob where there is a function triggered by an azure queue public class Functions { public static void ProcessQueueMessage([QueueTrigger("scannedcodes")] string message, TextWriter log) { // do something } …
Matteo
  • 233
  • 3
  • 18
0
votes
0 answers

Azure CloudQueue.addMessage() doesn't work

I have this simple code: public void addMessage(string msg, string queueName) { CloudQueueMessage message = new CloudQueueMessage(msg); try { CloudQueue queue = getQueue(queueName); bool exists =…
Fabrizio Morello
  • 335
  • 1
  • 5
  • 18
0
votes
0 answers

Generic object for passing data to Queue

I need to create a WebJob that handles some work that is not super time-sensitive. I use both DocumentDb and Azure Table Storage so I deal with de-normalized data that need to be handled by some backend process to keep consistent. I have multiple…
Sam
  • 26,817
  • 58
  • 206
  • 383
0
votes
1 answer

azure queue triggered webjob prevent message dequeue from azure queue

I have azure webjob triggers from azure queue. i don't want to dequeue message on some specific condition, and i would like to process that message after some time for example (5 minutes) is it possible to prevent dequeue message ?
Mahesh
  • 730
  • 7
  • 26
0
votes
1 answer

How can I send message to an azure queue from a 1.1 .net framework based application?

We need to integrate a web application based on .net framework 1.1 with an more recent application, we are thinking on using azure queues. Is that possible? There is always the option the option to poll a table, or to write a custom clinet, but we…
0
votes
1 answer

WebJob to read from and write to the same Azure blob

I am trying to process images uploaded to azure using webjob. I have 2 containers image and thumbs. Currently, I am reading from image container, creating a thumbnail and writing it to thumbs container using the following code, which works…
CoOl
  • 2,637
  • 21
  • 24
0
votes
1 answer

Managing multiple Azure Service Bus Queues concurrently

I'm using an Azure environment and developing in .NET I am running a web app (ClientApp) that takes client data to perform a series of calculations. The calculations are performance intensive, so they are running on a separate web app…
0
votes
1 answer

Multiple Azure queues

I am trying to workout the best implementation/approach to the following problem I have customers using our win forms application which has a plugin which will connect to the Azure Queue to check if there are awaiting invoices for the connecting…
Amitesh
  • 21
  • 4
0
votes
0 answers

Method not found: 'Int32 Microsoft.WindowsAzure.Storage.Queue.CloudQueueMessage.get_MaxNumberOfMessagesToPeek()'

Anyone got this error in Visual Studio 2012, while trying to peek the Azure Queue Storage ? Just started happening to me today...
Shay
  • 353
  • 1
  • 11
0
votes
1 answer

Azure Service Bus Queue OnMessageOptions

I am using service bus queue and came across OneMessage mechanism which processes messages as and when they arrive. There is a parameter associated which I read about "MaxConcurrentCalls". I know what this parameter is and how it works. But what is…
Mandar Jogalekar
  • 3,199
  • 7
  • 44
  • 85