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

Multiple Subscribers forwarding it to the same Queue - Azure

I'm looking to utilize the same queue for multiple subscriptions, Just wondering if this a good practise, and what are pro's and con's of this design?
0
votes
0 answers

Function App not getting executed for all messages in the service bus queue

I have 2 functions created in a function app Function 1 adds messages to a service bus queue (Queuename - TestQueue) Function 2 gets triggered whenever there is a message in the service bus queue (Queuename - TestQueue) and adds that received…
0
votes
2 answers

Azure Queue: Unable to read cloud queue messages. AsString and AsBytes properties are throwing System.ArgumentException

Ok, I have a class intended to manage Azure cloud queue messages, the insertions are working fine: public async void Insert(string message) { await Queue.AddMessageAsync(new CloudQueueMessage(message)); } Note that this Queue is…
Ramon Dias
  • 835
  • 2
  • 12
  • 23
0
votes
2 answers

Is there a way to prevent message going into poison queue when dequeueCount exceeds when processing Azure queue?

I have Azure function running on QueueTrigger, but would like to complete the function without sending the message to poison queue if DequeueCount(max retries) exceeds the set limit (but keep sending other failed messages to the poison queue) My…
JNA
  • 45
  • 9
0
votes
1 answer

Poison Queue content into main queue

I am trying to move poison messages into the main queue. I am not facing any problem in moving the messages, but looks like message is getting converted to some other encryption level.
Andrew
  • 183
  • 2
  • 14
0
votes
1 answer

Azure Queue Send Message Method Expiry

New to Azure and testing Azure Queues . I attempted sending a message to the Queue with the Python SDK . Here is the method that I'm calling from azure.storage.queue import QueueServiceClient, QueueClient,…
0
votes
1 answer

Moving Messages from Azure Queues to Database

I'm a newbie to Azure . So far been successful in developing a couple of functions that has been able to do the following Trigger a function when a message arrives in Queue Response received by function stored in a Queue Now I know that I can…
Rajesh Rajamani
  • 189
  • 2
  • 14
0
votes
1 answer

Azure function app with Queue Storage input binding

I am learning Azure Function Apps, and I have a function with the input binding for a Azure Storage Queue. The function below is the default template code that is provided for powershell in the portal param([string] $QueueItem, $TriggerMetadata) #…
Chubsdad
  • 24,777
  • 4
  • 73
  • 129
0
votes
0 answers

kusto query from applicationinsights trace logs returns empty fields

I am really struggling with this actually. I have a Kusto Query which until yesterday worked well...nothing ahs changed since then. I need to query applicationinsights trace logs to get particular data. First look at the following data and query…
0
votes
1 answer

Azure Queue Trigger - Dequeue rate limit

I have a Azure queue trigger app. It tries to process message asap but when I have 1000s of message in the queue I want to limit number queue messages it process per second. Is there a way to setup limit? My goal is to slow down the rate at which my…
0
votes
1 answer

Claim-check with Service Bus - node.js

I want implement the claim-check workflow with Azure Service Bus: claim check Is it possible to do that using node.js? I just found only .net examples and I cant see anything in @azure/service-bus node package that seems to refer to claim check.…
Davide Bracaglia
  • 159
  • 1
  • 1
  • 12
0
votes
1 answer

How can I set Queue Storage message TTL in the context of an Azure Function output binding in Python?

I have a python azure function with a queue output binding. I am successfully using this binding to queue messages from within the function. Is it possible to set the message TTL on the underlying queue or on the message itself? I don't need to set…
Allan Wright
  • 140
  • 2
  • 8
0
votes
2 answers

Azure : message is not getting pushed in Topics and retrieved as subscription

I have created a topic and subscription in azure. when i try to push my message in topic and retrieve it with subscription i cannot get the messages. Are messages stored in the queue. Are my messages not getting published. Push in the topic code …
0
votes
1 answer

Why queue bindings does not work in Azure?

I'm trying to create a function with a queue trigger, here's the function.json: "scriptFile": "__init__.py", "bindings": [ { "name": "CraigslistItemParser", "type": "queueTrigger", "direction": "in", "queueName":…
kshnkvn
  • 876
  • 2
  • 18
  • 31
0
votes
0 answers

Azure queue with 20 fixed values

I have multiple functions running multiple instances. I need each instance to take a unique id from a queue. The id's should stay in the queue forever so functions just keeps taking the id that was used latest. I tried with a SQL table with no…
Thomas Segato
  • 4,567
  • 11
  • 55
  • 104