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
2
votes
0 answers

What exaclty does the Message Format ".NetBinary" for ServiceEndpoint-Registration?

I've tried to get answers by googling it but I can't find appropriate information about this. What exactly means ".NetBinary" when a ServiceEndpoint is registered by the PluginRegistration-Tool for sending for example the PluginExecutionContext to a…
2
votes
1 answer

Extend the initialVisibility Delay for an existing CloudQueueMessage for Azure Message Queue

I am trying to achieve the following flow using Azure Message Queue as illustrated in the following diagram : So, the client initially creates and adds a message in the queue with initialVisibiltiyTimeout of 5…
2
votes
2 answers

Azure Queue throwing Exception on DeleteMessage

I'm working on an Azure based project for some research and have been running into some issues when deleting messages from a CloudQueue instance. The code is fairly straightforward, so I'm a bit baffled as to why an exception is being thrown when I…
Nicholas Mancuso
  • 11,599
  • 6
  • 45
  • 47
2
votes
1 answer

CloudQueueClient.ResponseReceived Event broken?

I'm trying to build an event driven Azure Queue where a event is to fired every time a message is put in the Azure Queue. With AzureXplorer I see that the messages are put in the Azure Queue properly but the CloudQueueClient.ResponseReceived Event…
user152949
2
votes
1 answer

How to create dependency injection for Azure Storage queues to process each message as it is provided

Trying to read from an Azure Queue to which some other service writes. If I use this in startup.cs CloudStorageAccount storageAccount =…
Rishabh Jain
  • 197
  • 2
  • 14
2
votes
1 answer

Azure Queue Rest API "Resource Not Found 404"

On an Angular app I am trying to peek at a message in a queue (with multiple messages on it) on Azure using this URL format: https://myaccount.queue.core.windows.net/myqueue/messages?peekonly=true from Peek Messages | Microsoft Docs. My request:…
kg123
  • 395
  • 2
  • 4
  • 16
2
votes
1 answer

deploying Azure webrole to the cloud, but dont understand dataconnection string (for queues)

I have written and successfully deployed a test app to the azure cloud, but I am lost now that I have added a queue to the application. Currently I using a configuration string: Setting name="DataConnectionString" value="UseDevelopmentStorage=true"…
user611304
  • 21
  • 2
2
votes
2 answers

Azure queue check number of messages

For purposes of our integration checking, I want to count the number of messages on an Azure queue. The method looks like this: internal void VerifyMessagesOnQueue(string queueNameKey, int expectedNumberOfMessages) { var…
Scotty H
  • 6,432
  • 6
  • 41
  • 94
2
votes
1 answer

Where To Get InstanceId From For RaiseEventAsync Method In Azure Durable Functions?

I'm learning how to use Azure Durable Functions and I've come across a problem. I'm posting a message to a queue and waiting for it, then logging it to trace, but I'm not sure where to get the InstanceId from. Here's what I have so far: public…
Aaron
  • 622
  • 7
  • 15
2
votes
3 answers

Is it possible to create a public queue in Windows Azure?

In Windows Azure it's possible to create public Blob Container. Such a container can be accessed by anonymous clients via the REST API. Is it also possible to create a publicly accessible Queue? The documentation for the Create Container operation…
Mark Seemann
  • 225,310
  • 48
  • 427
  • 736
2
votes
2 answers

How to get runtime status of queue triggered azure function?

My azure function is calculating results of certain request jobs (cca. 5s-5min) where each job has unique jobId based on the hash of the request message. Execution leads to deterministic results. So it is functionally "pure function". Therefore we…
2
votes
1 answer

Pop receipt changed on update message

Our application dequeues the message from Azure queue and makes it invisible for a given period of time. Worker than processes it and when all work is done it deletes it from the queue. But sometimes delete fails with 404 error not found. The…
michal.jakubeczy
  • 8,221
  • 1
  • 59
  • 63
2
votes
1 answer

Azure Function App - Output to queue in PHP

Recently investigating the use of Azure Functions. Assume you configure a PHP Azure Function with one input, triggered by Azure Message Queue, and an output to another Azure Message Queue. While trigger works, message is received and code executes…
g33k84
  • 138
  • 9
2
votes
1 answer

Create delay between two message reads of a Queue?

I am using Azure Queues to perform a bulk import. I am using WebJobs to perform the process in the background. The queue dequeues very frequently. How do I create a delay between 2 message reads? This is how I am adding a message to the Queue public…
2
votes
1 answer

Cancelling an Azure Function with a queue trigger without the poison queue

We're using the following setup: We're using an Azure Function with a queue trigger to process a queue of JSON messages. These messages are each just forwarded to an API endpoint via HTTP POST, for further processing. The API can return 3 possible…
David Omid
  • 647
  • 6
  • 19