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

AzureSQLDB- Sending table update to invoke a function

I am working on Azure SQLDB- and idea is to send a messages to signalR hub which will connect with the clients. The volume of traffic will be low (around 1000-2000 messages per day at maximum, and 1-2s latency is fine) Rather than poll at periodic…
0
votes
1 answer

How to tell when the last message from an Azure Queue is removed

I'm exploring azure functions and queue triggers to implement a recursive solver. The desired behavior is as follows: There exists a queue called "solveme" which when it receives an item containing state, will create a second queue with a unique…
MPavlak
  • 2,133
  • 1
  • 23
  • 38
0
votes
2 answers

Azure Service bus queue data receiver

I have following ProcessQueueMessage function that gathers messages from service bus queue: public static void ProcessQueueMessage([ServiceBusTrigger("dsique2")] BrokeredMessage message, TextWriter logger) { …
emkay
  • 187
  • 12
0
votes
1 answer

Azure Message Queue -Generate Shared Access Signature

I'm having trouble trying to send a POST message to an Azure SB Queue using PostMan. The error I get is 401 40103: Invalid authorization token signature My issue is generating the SAS as I'm trying to follow various articles and examples but I must…
Chris Crawshaw
  • 287
  • 5
  • 21
0
votes
1 answer

Azure cannot Add Message to Queue

I have an Azure WebJob and I use the CloudQueue to communicate to it. From my Web Application: logger.Info("Writing Conversion Request to Document Queue " + JsonConvert.SerializeObject(blobInfo));                        var queueMessage = new…
Philip Tenn
  • 6,003
  • 8
  • 48
  • 85
0
votes
1 answer

create thumbnail request and queue it in azure queue storage finally web job should pickup and create it using asp.net mvc

Can any one of you suggest me how to proceed with below 2 points as i am confused. I have an asp.net mvc application that will upload image and other address details to blob storage. Now i need to ad below logic to it. I am confused about the…
anusha R
  • 13
  • 7
0
votes
1 answer

Azure function set expiration time for queue output

Is it possible to set an expiration time for Azure Function Storage queue output binding? This is what I have in function.js: { "type": "queue", "name": "MyMessageQueue", "queueName": "mymsgqueue", "connection": "AzureWebJobsStorage", …
Shane
  • 369
  • 1
  • 2
  • 13
0
votes
2 answers

How to get batch/bulk messages from azure queue without using azure sdk?

i am using createQueueBrowser() of JMS but it is not giving any response, i mean enumerator is null. is there any alternatives for getting bulk message from the azure queue and also are there any ways to traverse the queue without using azure java…
Tirumalesh
  • 95
  • 1
  • 17
0
votes
2 answers

Failure handling for Queue Centric work pattern

I am planning to use a queue centric design as described here for one of my applications. That essentially consists of using a Azure queue where work requests are queued from the UI. A worker reads from the queue, processes and deletes the message…
shekhar
  • 1,372
  • 2
  • 16
  • 23
0
votes
2 answers

How to make a REST call to an Azure Queue

I am able to make a C# library call to a queue using the SDK. However I am unable to make a REST call to the queue. How shall I proceed? Any code sample will be appreciated.
pankaj
  • 1,030
  • 5
  • 19
  • 41
0
votes
2 answers

At what maximum rate a webjob can process queue storage messages?

I am working on a local dev environment with Storage Explorer (connected to local emulated storage) and my webjob is triggered on new queue messages. For testing, I publish 100 queue messages and my webjob function prints a counter value to the…
Alex E
  • 735
  • 2
  • 7
  • 15
0
votes
2 answers

IIS hosted service accessing Azure Queue storage

We are currently in this inbetween stage of hosting services on a VM in IIS and migrating some of them to Azure. I have two services, Service A - which inserts items into an Azure Queue Storage and Service B - which is a Console app which uses the…
Lorena72
  • 13
  • 2
0
votes
0 answers

Azure Queue Timing error Win 10 IOT Rpi2

I am using Azure Storage queues to send notifications to my Rpi2 running win 10 IOT core but I keep getting an error regarding the timing. I have been able to successfully do this before and it seems to work in only specific timings Here is the…
0
votes
1 answer

Queues working with Azure Storage (Classic) but not with modern

Doing some work with Azure and queues, and I can get it to work with a classic storage account, but not the standard (newer) storage account. "Modern" Azure storage account Classic Storage Account If I run this code against each of…
Kjensen
  • 12,447
  • 36
  • 109
  • 171
0
votes
1 answer

Azure Queue - Reappearing messages

I have a webjob that gets triggered by queue messages. If the job gets too long, The message reappears on the queue and a new instance of the webjob is triggered consuming the same message. That is not meant to be. How can set the timespan while a…
BrilBroeder
  • 1,409
  • 3
  • 18
  • 37