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

nservicebus a client sends command to msmq and azure service queue

I would like to know how, if possible, a client app (winform) sends NServicebus command A to be processed by a MSMQ queue and command B to be processed by a Azure storage queue or Azure service bus? If not, how may I get around of it?
hshen
  • 468
  • 1
  • 4
  • 13
0
votes
1 answer

How to get my sample azure function working with queues

how to implement an azure function using visual code on a mac that communicates with a queue? All the examples I come across (shown below) seem to show visual studio together with nuget package manager. What's the equivalent to download the…
James
  • 697
  • 4
  • 19
  • 24
0
votes
2 answers

Get initialVisibilityDelay CloudMessage

I have a message in queue with initialVisibilityDelay property (so, message is not visible now): await inputQueue.AddMessageAsync(new CloudQueueMessage(JsonConvert.SerializeObject(queueItem)), null, TimeSpan.FromMinutes(retryMinutes), null,…
Oleg Sh
  • 8,496
  • 17
  • 89
  • 159
0
votes
1 answer

How to fix an error on interface when implementing IQueueServices in Azure-bus-services?

I have the following error on my Interface implementation; using Microsoft.Azure.Management.ServiceBus; using Microsoft.Azure.Storage.Queue; using Microsoft.Azure.Storage; using System.Text; using Microsoft.ServiceBus.Messaging; namespace…
Gcobza
  • 432
  • 1
  • 5
  • 12
0
votes
1 answer

How to add tags to file storage, queue storage and table storage created in Microsoft Azure

I have created all three, table storage, queue storage, and file storage within Microsoft Azure. Now I wish to add tags to those resources. I could add tags to Storage Account, the basic requirement for the above resources, but not for the above…
Omkar
  • 157
  • 1
  • 9
0
votes
0 answers

Queue message ends up on -poison queue

I have a Logic App that monitors a Shared Mailbox and that writes a message to an Azure Queue if certain content is contained in the email. The queue message triggers an Azure Function which does ‘stuff’. However, in testing, my queue messages…
finisterre
  • 331
  • 7
  • 19
0
votes
1 answer

Azure Function App process time can it be extended by extending the QueueMessage's invisibility until it is processed?

I am working with Azure Function Apps in Python, that has two Functions HTTPTrigger & QueueTrigger, in the QueueTrigger I call my custom code, which takes more than 10 mins to process. I changed it from 5 mins to 10 mins in host.json…
0
votes
1 answer

Handling errors/failures occurred in Azure Durable Functions called by queue-triggered Azure Functions

We have an Azure Storage Queue which triggers an azure function once a payload/message hits the queue. The queue-triggered function invokes another durable function to process the message/payload. Here it is the code snippet: …
Arash
  • 3,628
  • 5
  • 46
  • 70
0
votes
1 answer

Azure queue triggered function written in visual studio not listening queue

Azure function created from visual studio is not listening the queue but when I create azure function from portal It listens the queue. Following are the steps which I did while creating function in visual studio 2017 I implemented azure queue and…
0
votes
1 answer

Failed Web Job from Azure Storage Queue not being written to Poison Queue

I have an Azure Web Job which is working by processing new items on an Azure storage queue. That is working. I have set the MaxDequeueCount to a low number, and once an operation triggered by a queue has failed that many times, I expect that this…
user1060500
  • 1,505
  • 1
  • 21
  • 40
0
votes
1 answer

azure functions queue trigger configurations

I am trying to find the right place to set a batch size for my queue trigger. Basically all these properties.. "batchSize": 1, "maxDequeueCount": 2, "maxPollingInterval": 5000, When I checked this article,…
Sarah
  • 1,199
  • 2
  • 21
  • 42
0
votes
1 answer

Azure functions: queue configurations

I have an Azure queue, and I am noticing that lots of messages come out all together. Is there a way that I can de-queue the messages maybe one at a time? Also, how can I set the queue to process the items that go in the poison queue only two times…
Sarah
  • 1,199
  • 2
  • 21
  • 42
0
votes
1 answer

What architecture for a "function workflow" with Azure?

Use case I'd like to build a workflow for a specific process and want to use Azure functions to achieve this. All these functions needs to be "chained" and the process cannot continue if one function fails. I need to get an updated status during the…
0
votes
1 answer

Azure HTTPtrigger function not writing to Azure Storage Queue

I am expecting the below code to take a JSON body from func.HttpRequest, write that message to an Azure Storage Queue and then return a success message to the caller. This works except that my Storage Queue is blank. import logging import…
Jay42
  • 417
  • 1
  • 11
  • 24
0
votes
0 answers

Azure queue trigger duplicate value

I have Azure Queue in operation that I write to after each execution on a azure time trigger.The time trigger added message to the queue. But in some times duplicate value added in azure queue. The queue trigger functionality is to send…
Jinesh
  • 1,480
  • 2
  • 25
  • 52