97 questions with Azure Queue Storage tags

Sort by: Updated
1 answer One of the answers was accepted by the question author.

Alerts on Azure Storage Queue

I like to send email alerts when messages get pushed to a particular queue in a storage account? Is this possible using Azure portal? If not, what are my no/low code solutions? For e.g. in this Microsoft reference implementation, dead letter messages…

Azure Monitor
Azure Monitor
An Azure service that is used to collect, analyze, and act on telemetry data from Azure and on-premises environments.
2,804 questions
Azure Queue Storage
Azure Queue Storage
An Azure service that provides messaging queues in the cloud.
97 questions
asked 2021-04-05T05:43:45.24+00:00
Kiran Pradeep 106 Reputation points
commented 2021-04-12T07:34:55.047+00:00
Kiran Pradeep 106 Reputation points
1 answer

QueueTrigger Consistent Incorrect Execution Pattern

I have a QueueTrigger function that is the only active function in its function app. Messages are delivered to the queue by Event Grid every 10 minutes. Instead of processing the messages when they come in, the QueueTrigger is firing in a pattern shown…

Azure Functions
Azure Functions
An Azure service that provides an event-driven serverless compute platform.
4,284 questions
Azure Queue Storage
Azure Queue Storage
An Azure service that provides messaging queues in the cloud.
97 questions
asked 2021-02-19T15:28:34.583+00:00
Ben Holmes 1 Reputation point
answered 2021-02-22T19:32:56.497+00:00
deherman-MSFT 33,471 Reputation points Microsoft Employee
0 answers

Queue trigger only working for one queue

Hi I have a function app with two queue trigger functions. Each function is responsible for processing a new message when the respective queue recieves a new message. This is the code for the first function: Code for the second…

Azure Functions
Azure Functions
An Azure service that provides an event-driven serverless compute platform.
4,284 questions
Azure Queue Storage
Azure Queue Storage
An Azure service that provides messaging queues in the cloud.
97 questions
asked 2021-02-16T14:52:53.773+00:00
Frederik Hundahl Kehlet 6 Reputation points
commented 2021-02-19T06:35:15.313+00:00
Frederik Hundahl Kehlet 6 Reputation points
1 answer One of the answers was accepted by the question author.

azure event grid data flow for multiple subscriptions to same input storage source

Hi, Consider I have the following scenario: So I have 2 different subscriptions: sub1, sub2 both subscribed to the same storage account and publishing events to 2 different queues in the same storage account. which of the following is…

Azure Blob Storage
Azure Blob Storage
An Azure service that stores unstructured data in the cloud as blobs.
2,435 questions
Azure Queue Storage
Azure Queue Storage
An Azure service that provides messaging queues in the cloud.
97 questions
Azure Event Grid
Azure Event Grid
An Azure event routing service designed for high availability, consistent performance, and dynamic scale.
316 questions
asked 2021-01-05T03:40:43.183+00:00
Mayuri Kadam 81 Reputation points Microsoft Employee
accepted 2021-01-06T00:45:36.993+00:00
Mayuri Kadam 81 Reputation points Microsoft Employee
1 answer

Error: unable to verify the first certificate in nodejs azure queue storage createMessage

I am trying out testing my Azure Queue Storage on Azurite emulator on MacOS in a local environment. I wrote a piece of code to send a message, which was to be viewed on Azure Storage Explorer. I am using the https connection string as stated in the…

Azure Storage Explorer
Azure Storage Explorer
An Azure tool that is used to manage cloud storage resources on Windows, macOS, and Linux.
231 questions
Azure Queue Storage
Azure Queue Storage
An Azure service that provides messaging queues in the cloud.
97 questions
asked 2020-12-24T21:48:45.287+00:00
Bob141 1 Reputation point
answered 2020-12-25T16:05:54.197+00:00
Sumarigo-MSFT 43,801 Reputation points Microsoft Employee
0 answers

Recent Azure Queue changes break C# QueueTrigger and QueueClient APIs

Recent changes to the Azure Queues, indicated by this GitHub issue: https://github.com/Azure/azure-sdk-for-net/pull/16689 breaks the interactions with existing .NET QueueTriggers receiving a string and existing .NET QueueClients posting a string.

Azure Queue Storage
Azure Queue Storage
An Azure service that provides messaging queues in the cloud.
97 questions
asked 2020-12-06T17:19:10.997+00:00
Jeff Fritz [MSFT] 6 Reputation points
commented 2020-12-09T06:34:49.897+00:00
Sumarigo-MSFT 43,801 Reputation points Microsoft Employee
2 answers One of the answers was accepted by the question author.

Azure Functions functionAppScaleLimit of 1 isn't working as expected to limit concurrency on Queue Trigger

I have a Function App with multiple queue triggers set up and am trying to limit concurrency by setting functionAppScaleLimit to 1. After testing this, I'm getting timeouts because two queue triggers will execute at around the same time, but only one is…

Azure Functions
Azure Functions
An Azure service that provides an event-driven serverless compute platform.
4,284 questions
Azure Queue Storage
Azure Queue Storage
An Azure service that provides messaging queues in the cloud.
97 questions
asked 2020-10-26T08:22:50.11+00:00
ddx1 171 Reputation points
commented 2020-10-27T15:55:12.25+00:00
ddx1 171 Reputation points
1 answer One of the answers was accepted by the question author.

QueueTriggered FunctionApp failing with : Timeout exceeded

I am running a QueueTriggered FunctionApp developed in Python under App Service Plan : myFunction (EP3: 1) Earlier I had set functionTimeout host.json to 02:00:00 but it failed with error Timeout value of 02:00:00 was exceeded by function:…

Azure Functions
Azure Functions
An Azure service that provides an event-driven serverless compute platform.
4,284 questions
Azure Queue Storage
Azure Queue Storage
An Azure service that provides messaging queues in the cloud.
97 questions
asked 2020-08-28T12:13:05.49+00:00
KS, Sharath 21 Reputation points
accepted 2020-09-03T04:32:35.283+00:00
KS, Sharath 21 Reputation points
1 answer

Build fails at Nuget Push stage

Build fails at Nuget push stage.Saying "Pushing took too long". This happened earlier this week i repeated the build and on the third trial, it succeeded. But today i have tried like eight times to no avail. I will appreciate any ideas.

Azure Migrate
Azure Migrate
A central hub of Azure cloud migration services and tools to discover, assess, and migrate workloads to the cloud.
718 questions
Azure Logic Apps
Azure Logic Apps
An Azure service that automates the access and use of data across clouds without writing code.
2,853 questions
Azure Queue Storage
Azure Queue Storage
An Azure service that provides messaging queues in the cloud.
97 questions
Azure Automation
Azure Automation
An Azure service that is used to automate, configure, and install updates across hybrid environments.
1,120 questions
asked 2020-08-20T17:15:39.217+00:00
Cassandra Tambongnchong 1 Reputation point
answered 2020-08-26T06:08:30.09+00:00
MayankBargali-MSFT 68,641 Reputation points
1 answer One of the answers was accepted by the question author.

Azure function: set infinite TTL when adding a message to a queue

Hi, I've created an Azure Function having an HTTP trigger and an Azure Queue Storage as output. The function simply add a new message to the Queue. It's possible to set the Expiration Time TTL to infinite (-1) when the message is added to the…

Azure Functions
Azure Functions
An Azure service that provides an event-driven serverless compute platform.
4,284 questions
Azure Queue Storage
Azure Queue Storage
An Azure service that provides messaging queues in the cloud.
97 questions
asked 2020-08-09T17:09:28.157+00:00
Fabio 26 Reputation points
commented 2020-08-13T08:05:08.767+00:00
Fabio 26 Reputation points
1 answer One of the answers was accepted by the question author.

Queue Service (Azure AD): Failed to list queues: authMode: 4

Hello, I did open the Connectivity check for my storage account and found this error there: Queue service (Azure AD) Endpoint accessible: Yes List queues: Failed Failed to list queues: authMode: 4 code: AuthorizationPermissionMismatch content:…

Azure Storage Accounts
Azure Storage Accounts
Globally unique resources that provide access to data management services and serve as the parent namespace for the services.
2,703 questions
Azure Queue Storage
Azure Queue Storage
An Azure service that provides messaging queues in the cloud.
97 questions
asked 2020-07-28T11:53:45.06+00:00
Clemens 21 Reputation points
commented 2020-08-01T19:22:57.56+00:00
Clemens 21 Reputation points
1 answer One of the answers was accepted by the question author.

How many Azure storage queue messages can be leased at one time?

I want to take messages from Azure Storage queue in batches, making use of the lease ability. How many Azure storage queue message can be leased at a maximum? Is there actually a maximum? Sander

Azure Storage Accounts
Azure Storage Accounts
Globally unique resources that provide access to data management services and serve as the parent namespace for the services.
2,703 questions
Azure Queue Storage
Azure Queue Storage
An Azure service that provides messaging queues in the cloud.
97 questions
asked 2020-07-15T13:13:31.627+00:00
Sander van de Velde 28,546 Reputation points MVP
accepted 2020-07-21T22:25:45.32+00:00
Sander van de Velde 28,546 Reputation points MVP
1 answer

Unable to trigger azure function though service bus queue

I wanted to trigger a function whenever a queue receives a message. The queue is getting loaded with the input message but service bus is not triggering the function. No error or No output.

Azure Service Bus
Azure Service Bus
An Azure service that provides cloud messaging as a service and hybrid integration.
548 questions
Azure Functions
Azure Functions
An Azure service that provides an event-driven serverless compute platform.
4,284 questions
Azure Queue Storage
Azure Queue Storage
An Azure service that provides messaging queues in the cloud.
97 questions
asked 2020-06-13T18:15:15.887+00:00
Santhosh S 1 Reputation point
commented 2020-06-18T14:24:18.74+00:00
Pramod Valavala 20,591 Reputation points Microsoft Employee
1 answer One of the answers was accepted by the question author.

Setting the Category of an Email through an HTTPS PATCH request

I want to send a PATCH request to set the "categories" collection of an email to a value say "XYZ". What's wrong with the following HTTP request in Microsoft Graph Explorer and how can it be corrected? PATCH …

Azure Information Protection
Azure Information Protection
An Azure service that is used to control and help secure email, documents, and sensitive data that are shared outside the company.
517 questions
Azure Queue Storage
Azure Queue Storage
An Azure service that provides messaging queues in the cloud.
97 questions
Microsoft Entra ID
Microsoft Entra ID
A Microsoft Entra identity service that provides identity management and access control capabilities. Replaces Azure Active Directory.
19,529 questions
asked 2020-06-13T12:29:05.13+00:00
Sayyed Babar Ali 21 Reputation points
commented 2020-06-13T21:21:51.033+00:00
Sayyed Babar Ali 21 Reputation points
2 answers One of the answers was accepted by the question author.

Occasional problem using Active/Passive Windows Cluster with Message Queuing Role

Hi, I am experiencing an occasional problem with an Active/Passive Windows Failover cluster and would like to get some help and guidance on how to find the root cause to the problem. The cluster is setup using two Windows Server 2019 with a quorum disc…

Azure Queue Storage
Azure Queue Storage
An Azure service that provides messaging queues in the cloud.
97 questions
asked 2020-06-02T19:27:04.517+00:00
Larsson Stefan 26 Reputation points
commented 2020-06-03T17:19:16.51+00:00
Larsson Stefan 26 Reputation points
1 answer One of the answers was accepted by the question author.

Azure Queue Storage -Unexpected delay in message delivery on a queue

I am experiencing a delay between the time an application adds a message to a queue and the time it becomes available to read from the queue [Note: As we migrate from MSDN, this question has been posted by an Azure Cloud Engineer as a frequently…

Azure Queue Storage
Azure Queue Storage
An Azure service that provides messaging queues in the cloud.
97 questions
asked 2020-05-14T11:46:47.897+00:00
ajkuma 22,401 Reputation points Microsoft Employee
accepted 2020-05-14T12:35:58.613+00:00
ajkuma 22,401 Reputation points Microsoft Employee
1 answer One of the answers was accepted by the question author.

Azure Queue Storage -dequeue behavior timeout and DequeueCount property

Hi all, Tried to research how is the Azure Queue Storage react on dequeue, however not much documentation done by Microsoft on this. Could any one share that any documents / comment on: 1) Is dequeue means deleting the message permanently OR make the…

Azure Queue Storage
Azure Queue Storage
An Azure service that provides messaging queues in the cloud.
97 questions
asked 2020-05-14T11:42:36.003+00:00
ajkuma 22,401 Reputation points Microsoft Employee
accepted 2020-05-14T12:16:48.623+00:00
ajkuma 22,401 Reputation points Microsoft Employee