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

Access Azure WebApp Object From Azure WebJob

We have a Static Class in the WebApp that contains a static dictionary of current sessions and username. We need to have access to the data in the dictionary in the WebJob as we want to update data based on who currently has active sessions. The…
77Vetter
  • 209
  • 3
  • 16
0
votes
1 answer

Does the PopReceipt property guarantee the CloudQueueMessage was successfully added to an Azure Storage Queue?

I'm using the Microsoft.WindowsAzure.Storage.Queue library to push messages to an Storage Queue from an Azure Function with the following code: public void Enqueue(MyMessage myMessage) { string originalPayload = null; try { …
Velair
  • 227
  • 3
  • 12
0
votes
1 answer

Azure Web Job logs

I want to check my WebJob app. I am sending a queue message to 'blobsaddressqueueu' queue. After few seconds the message disappears from the queue - means that it triggered the WebJob app. Then I see the message in 'blobsaddressqueueu-poison' -…
jrz
  • 1,213
  • 4
  • 20
  • 54
0
votes
1 answer

how to exclude queue messages like azure storage explorer?

Our code is just a copy paste from some online tutorial in getting the messages from an azure storage queue. public int? GetQueueMessageCount(CloudQueue queue, TextWriter textWriter) { int? messageCount; try …
daxu
  • 3,514
  • 5
  • 38
  • 76
0
votes
1 answer

Service Bus Route Query

I have set a endpoint and a route on service bus with this criteria in query: $body.Temperature.AlarmPrius = 1 where the format of message I set is like public async void InvioDati(ProbDATA msgRicevuto) { var messageString =…
0
votes
2 answers

Value cannot be null. Parameter name: messageId

I'm trying to update the content of an Azure Queue using the following code : queue.UpdateMessage(new CloudQueueMessage(timestamp + "|" + encodedContent),TimeSpan.FromMinutes(0),MessageUpdateFields.Content, null, null); However, I keep getting the…
dokyalashot
  • 105
  • 2
  • 18
0
votes
1 answer

Azure Function v2 queue trigger only takes in Json messages

I have an azure function project with a queue trigger; the project is an azure function v2. When I add messages to the queue that are not of type JSON, I get an exception inside the JsonSerialization.cs at the line JObject parsed =…
0
votes
1 answer

Reading a message in Azure storage queue multiple times

Context: I have an Azure storage queue that is used as the input queue for a Queue Trigger Function. So, whenever a message gets added to the queue, some function X is triggered and starts running. I want to test that the message was successfully…
J.B
  • 137
  • 2
  • 16
0
votes
0 answers

Azure function stops putting messages in storage queue

I have an Azure (let's call it A) function that have to put thousands of messages in an Azure storage queue. A uses a for loop to put the messages into the queue. Every message is an object serialized in JSON (it's very small). This queue is used to…
user3075478
  • 127
  • 11
0
votes
0 answers

Microsoft.WindowsAzure.Storage.Shared.Protocol.HttpResponseParsers.ProcessExpectedStatusCodeNoException Writing to Azure Queue

I am getting a Microsoft.WindowsAzure.Storage.Shared.Protocol.HttpResponseParsers.ProcessExpectedStatusCodeNoException exception occasionally when writing to Azure Queue, but do not understand what this exception means and how to avoid it. From my…
Kah
  • 627
  • 2
  • 11
  • 28
0
votes
1 answer

Azure function fan-out/fan-in without durable functions

I have two Azure Queue Triggers that run sequentially, one a WebJob and the other an Azure Function. The first queue trigger generates a number of messages that get picked up by the second queue trigger. The problem is that the first queue trigger…
Anonymous1
  • 3,877
  • 3
  • 28
  • 42
0
votes
1 answer

removing items from an azure queue with a visibility delay

Im placing items into an azure queue with a visibiliy delay. These items 'popup' at the appropriate time and are processed by a webjob. The process works perfectly. However, my users now want the ability to edit data that is associated with an…
proteus
  • 545
  • 2
  • 12
  • 36
0
votes
1 answer

Is there a way to dynamically determine the amount and names of queues triggered in Azure webjob during startup time?

I am using an Azure webjob with queue triggered functions to listen on several Azure queues. The processing method for each queue is identical (but the queues still need to be separate). I was wondering if there is a way to store the list of queue…
0
votes
0 answers

azure search query with + returns items with only one of the fields

I have an Azure search query with "&search=item1+item2" (I've also tried && and AND, as well as spaces between operator and items) - but the return items always include those with just "item1" and just "item2". Is there something I am missing? The…
reginashGina
  • 11
  • 1
  • 1
0
votes
2 answers

Azure Queue GetMessagesAsync does not get results

I try to get 32 messages per request from Azure Queue. queue.ApproximateMessageCount; This code gives me the result of 1509. Telling me the connection is OK and it has records. Also I check in queue it really has 1509 records. But when I try to…
apero
  • 1,074
  • 2
  • 23
  • 38