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

Azure Webjobs SDK and Queue handling errors

I'm working on a webjob that checks a Webserver for some data. Sometimes the Webserver is busy and will come back with a try again in a few seconds. Problem is that if I just ignore it and go through the function, it will delete the message from…
hjavaher
  • 2,589
  • 3
  • 30
  • 52
3
votes
1 answer

C# Send Email or SMS Async using Azure and Fire&Forget

I'm looking for a simple way to fire&forget either a Twilio SMS or an Email and I thought that Azure Queue or Bus does exactly that. But then I start reading about each one and it seems they were designed to do something more…
SF Developer
  • 5,244
  • 14
  • 60
  • 106
3
votes
1 answer

How to access Azure storage queue by JavaScript

For our testing purpose, we would like to access Azure storage queue directly with JavaScript instead of preparing a new web service. Is this possible? What should we do to achieve this, since I cannot find the official documentation for JavaScript…
Jerry Bian
  • 3,998
  • 6
  • 29
  • 54
3
votes
0 answers

Robust Retry Handling for Azure Message Queues & Multi Instance Worker Roles

Reposted from CodeReview.Stackexchange as it's only pseudo code I'm building a task processor worker role. Tasks are inserted into a simple DB Table (Guid, Json string, Status) and then the Guid is pushed onto an azure message queue. The worker role…
Eoin Campbell
  • 43,500
  • 17
  • 101
  • 157
3
votes
2 answers

What is the maximum length of base64 encoded string that can be added to Azure queue?

I need to send compressed Base64 data over an Azure queue, which has a limitation of 64K. My code compresses the data and then encodes it as a Base64 string. I verify the compressed and encoded string does not exceed 64000 bytes (see encodedLen…
Gilad Gat
  • 1,468
  • 2
  • 14
  • 19
3
votes
1 answer

Locking messages in queue with Windows Azure Queues

I am working with Windows Azure Message queues. I want know if is there a method to lock messages in the queue when i get them ?
GoodSpeed
  • 323
  • 4
  • 15
2
votes
3 answers

how to write azure web role - worker role schedule task?

I am reaching a conflict in my azure project, I'm trying to seclude task : on every 16th of the month of .xml file form individual web site. In my project I have one web role and one worker role, I trying to seclude on every 16th of the month…
2
votes
2 answers

Azure: Combining web and worker role: App pool recycle

I'm planning to do some light background processing in Azure. I already have a webrole running and would like to use the same role in order I don't have to use (and pay!) a dedicated worker role for that. I have read I can simply override Run() in…
kay.herzam
  • 3,053
  • 3
  • 26
  • 37
2
votes
0 answers

Azure Queue Trigger Concurrency Even With Batch Size One

Overview I have an Azure httpTrigger and a queueTrigger in Python in one Function App on a Consumption plan. The httpTrigger creates messages for the queue trigger to process. The processing of the queue messages takes around 5 minutes for longer…
2
votes
1 answer

Azure Queue trigger not working with Java

I have a spring boot application which will publish message on azure Queue. I have one more azure queueTrigger function written in Java which will listen to the same queue to which spring boot application has published a message. The queueTrigger…
2
votes
1 answer

Creating a Azure.Storage.Queues client that can handle multiple queues

I'm migrating my code from Microsoft.WindowsAzure.Storage.Queue to Azure.Storage.Queues. In my app, I wrapped all queue operations I use in a MyQueueClient class. The old way of creating a queue client was as follows: CloudStorageAccount account =…
Sam
  • 26,817
  • 58
  • 206
  • 383
2
votes
1 answer

Azure Function - Suspend queue trigger

I have azure function with queue trigger and I wanna perform deploy of new version, but before that I need to be sure that function will finish ongoing executions. Does disabling specific functions (or stopping whole function) will interrupt current…
Kamil W
  • 2,230
  • 2
  • 21
  • 43
2
votes
1 answer

host.json not respected by Visual Studio or web job

I have a queue processing application which is workign fine. I am now trying to persuade the queue trigger to only process one item at a time. My host.json is set up correctly, I think: But when I run the app (either in Azure as a web job, or…
Nick Locke
  • 65
  • 1
  • 6
2
votes
1 answer

Create a Azure function in Python on Visual Studio Code to trigger queue

I am trying to Create a Azure function in Python on Visual Studio Code to trigger queue. also i am trying to Get data from queue and save messages from queue in sql server using python. Can anyone help?
2
votes
1 answer

Running a loop through records in a batch with Azure Functions Python

I'm new to Azure . I need to trigger a azure function for each record . I'm able to do it in a loop but this becomes a sequential process taking time and resulting in a time-out . Rather I want it done in a parallel processing mode . My approach so…
Rajesh Rajamani
  • 189
  • 2
  • 14