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
1
vote
1 answer

Send a azure queue message in a docker container to a queue triggered function in another docker container

It is really difficult to explain. I am not expert in docker. I will try it. I have 3 components: 1 container with Azurite 1 container with a queue function Microsoft Azure Storage Explorer in the host. I am using docker-compose.yml to reach my…
Simone
  • 2,304
  • 6
  • 30
  • 79
1
vote
1 answer

Migrate from Azure Function app to Azure Container app

I have asp.net core REST API interacting with Azure Queue with input data. I have a Azure Function App with trigger on Azure Queue service. Whenever any entry that happens at the Azure Queue level, Azure Function app gets triggered which executes…
santosh kumar patro
  • 7,231
  • 22
  • 71
  • 143
1
vote
1 answer

Azure Logic App - Remove Double Quotes from Queue Message's Raw Input

I am attempting to send encoded base64 to an Azure Queue using a Logic App. However, the Logic App inserts the message to the queue with double quotes. This is causing problems for my pipeline downstream. Here is my process: Create a JSON…
1
vote
1 answer

Schedule a queue triggered azure function in Azure Function 4

In Azure functions 4 Isolated Process, I'm using queue triggered functions and multi-output bindings in my workflow. Everything works great until I try to figure out how to delay one of the work items via A VisibilityTimeout in the output binding.…
Angelo
  • 954
  • 2
  • 8
  • 15
1
vote
1 answer

How to specify content type as application/json while sending message to azure service bus topic using an Azure Function?

I'm using an Azure Function (Python) to send a message to a Service Bus topic whenever a file lands in blob storage following a similar set up to that outlined here. In particular, in order to send the message I have this in the JSON file: { …
B141
  • 121
  • 4
1
vote
1 answer

Additional queue and blob containers are getting created while running Azure Durable Function in local development environment

I have created a Azure Durable function with targetframework:.NET Core 3.1, which gets triggered whenever an entry is added to the Azure Queue which in turn invokes the Orchestrator function. This Orchestrator function triggers other activity…
1
vote
0 answers

Get Token request returned http error: 400 and server response

I have a asp.net core 3.1 web api which adds messages to Azure Queue. In this case I am using an account to login into the VS2019 and debug the code in my local development environment. The same account is also added to the access policy for the…
1
vote
1 answer

How to lock item in Azure storage table to allow only one Azure function to access its data at a time

I added a lock flag in an Azure storage table hoping only one Azure function gets access to its data at a time. Below is how I did it: Azure storage table with an item: { partitionKey: 'foo_id' foo: 'foo_data' bar: 'bar_data' isLocked:…
1
vote
1 answer

need help setting QueueMessageEncoding.Base64 for new Azure queueClient version

Recently updated to current library 12.8 for azure queue processing. Inserted message no longer work on existing routines as they are encoded as UTF-8 vs Base 64. found the thread talking about this and see that MS has implemented a new method to…
Joe Ruder
  • 2,122
  • 2
  • 23
  • 52
1
vote
1 answer

Max dequeue count in azure storage queue

What is the maximum no of times a azure storage queue message can be dequeued ? Couldn’t not find any documentation on MSDN regarding this. is our assumption correct that messages are moved to the poison queue only when an exception happens and…
nen
  • 621
  • 2
  • 10
  • 26
1
vote
1 answer

How does the Snowpipe cloud messaging mechanism exactly work on Azure?

I've successfully integrated Snowpipe with a container inside the Azure storage and loaded data into my target table, but now I can't exactly figure out how does Snowpipe actually works. Also, please let me know if there is already a good resource…
1
vote
1 answer

Failed Binding Queue Storage Message Text in Azure Function

I have successfully sent some messages to Azure queue storage. Here's a code of how I send messages to my queue storage: private void QueueEmail(Email email) { QueueClient client = GetQueueStorage("invoice-email"); var message =…
1
vote
1 answer

Azure Service Bus Queue Using Subscriptions

I am trying to use subscription in Azure Service Bus queue, however I get the following error message: Azure.Messaging.ServiceBus.ServiceBusException: The messaging entity 'local-test-manual:Queue:exports|4240a9fa-9fb0-43e5-b506-d2bc593aee5e' could…
ShaneKm
  • 20,823
  • 43
  • 167
  • 296
1
vote
1 answer

Azure functions - When do we need to use out for output bindings?

In azure functions there is multiple ways to do output bindings. For Blob storage, I can declare it as a binding with no additional constructs. For CosmosDb , I need to specify it as an out parameter. For a queue ,I can specify it as return in the…
Pradeepl
  • 198
  • 1
  • 12
1
vote
1 answer

Checking status of message insert to Azure Queue

I have 1 problem about Azure Queue. After insert 1 message to Azure Queue, how can I check this message have been inserted successful or not in my code (.net)? My solution is checking number of message already storage in queue and check again after…