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

How can I generate Microsoft Teams approvals using an Azure .NET Core webapp

I want to convert a PowerAutomate-heavy workflow using MS Teams approvals to an ASP.NET Core application. Is there a way to create approvals without the need for PowerAutomate?
TeamDman
  • 649
  • 6
  • 26
0
votes
1 answer

Copy Azure Queue messages to another storage account

We have a Queue created in storage account. an external system is creating messages in the Queue. So I need to process the messages for 2 environments (say PROD and Stage). So I have a Queue trigger available in both environments but the messages…
0
votes
1 answer

Create queue in Azurite via PowerShell script

I want to have a script to create a queue in Azurite running in a docker container. (Preferably a PowerShell script) My docker-compose.yml: My running container info: I don't quite understand how I can achieve creation of a queue. This is the…
David Oganov
  • 976
  • 1
  • 11
  • 23
0
votes
1 answer

Message not added to Azurite Queue from Azure Function

Following the documentation below I trying to create an azure function which adds a message to a queue. https://learn.microsoft.com/en-us/azure/azure-functions/functions-add-output-binding-storage-queue-vs?tabs=in-process#add-an-output-binding The…
Newbie
  • 563
  • 1
  • 5
  • 16
0
votes
1 answer

How to know Azure Function is restarted?

I have noticed of my Azure Queue has triggered and after 8 minutes the same queue has started again with the same queue message as per my app insight logs. Where I can find the Azure logs for queue triggered or function have restarted or function…
Dhanashri
  • 39
  • 5
0
votes
0 answers

Code execution get stuck inside Azure Function queue trigger

I'm currently working on an Azure function which should get executed through an Queue-Trigger. The problem is that it doesn't work as it should. Sometimes queue messages not processed and get stuck. And more often, azure function execution get…
Hunzla Ali
  • 383
  • 2
  • 5
  • 22
0
votes
1 answer

Cancel single WebJob execution

I have the current situation. Some big processes are made on Azure Web Jobs, and we have a lot of customers, each one of those customers can execute an instance of those functions triggered by Azure Queue. I have a button on our website (Azure App…
0
votes
1 answer

Passing More than 1000 parameters in RESTful api

Our Dashboard have dropdown which consist of more than 8k products and we have such 4-5 dropdowns. I want to filter data based on this dropdowns. But if I selecting all products then restful api url is breaking. Can i use azure bus service or…
0
votes
1 answer

How to handle long processing jobs in .Net core and with any suitable azure resource?

I am working in application and it has few components like single page application, back-end API application written in .Net core. My back-end application calls azure function which will run for 2 to 10 mins depending on the data processing. So I do…
0
votes
1 answer

How azure queue retries failed message?

I have this azure function triggered by queue storage. function.json: "retry": { "strategy": "exponentialBackoff", "maxRetryCount": 5, "minimumInterval": "00:01:00", "maximumInterval": "14:00:00" } If message A fails, message B…
Deivydas Voroneckis
  • 1,973
  • 3
  • 19
  • 40
0
votes
2 answers

Can we use Azure storage Queue as an Event source?

Can we use Azure Queue message as an event source to an event grid triggered Azure function? If so, how we can configure it. currently only blob storage is showing as event sources in storage account. enter image description here Note: My…
Pardha
  • 103
  • 2
  • 7
0
votes
0 answers

Azure Function Queue Trigger: Queue message dropping even before it got picked by Azure function Intermittently

I have a Queue trigger Azure function which is triggered whenever a queue msg appears in Azure Queue Storage. My work flow is: A user may schedule a task which needs to run after a few days at a particular time (execute at time) So I put a message…
0
votes
1 answer

Azure Queues dequeue count growing with Rebus core

I am using Rebus (https://github.com/rebus-org (v.5.3.1)) and until now everything has worked out just fine for years. (we upgraded from core 2.0 to 3.1 a couple of weeks ago) For the last couple of days, it had a lot of messages that just grows in…
0
votes
1 answer

Azure storage queue - geo redundancy

Is there any option to maintain HA specifically on Azure storage queues/tables, to do read as well as write to the queue on the secondary region if the primary goes down? Is there any reference to do the programmatic failover switch? For…
0
votes
1 answer

Using Queue in Azure Storage

I am try to solve 1 problem with using AzureStorage.Queue in .NET. First, I have 2 project, 1 project Web API, 1 project for WebJob. (All write in .NET Core 2.2) My project API when Create new product, It will insert 1 message store Id of product…