All Questions
Tagged with azure-storage-queues azure
275 questions
0
votes
1
answer
17
views
How do I create an event subscription that writes to a storage account queue in Azure?
I am getting a permissions error message when I try to create a new subscription for my event grid topic. I'm trying to write to a storage account queue. I have created a user assigned managed ...
0
votes
1
answer
84
views
How to use REST API to delete message on Azure Storage Queue in bash?
I would like to know how to delete a message on Azure Storage Queue. Currently I keep getting the following error.
<?xml version="1.0" encoding="utf-8"?><Error><Code&...
0
votes
1
answer
59
views
send queue data with custom expiration in python
Currently I'm trying to send data to a azure queue in storage. I am able to send data but I am unable to custom the expiration time like to 10 seconds 1 day like that. But in azure portal able to do ...
0
votes
2
answers
63
views
Azure Storage Queue JavaScript TTL
The TTL isn't being set on messages added to the queue using this code, and I can't fathom why that might be, even after trying multiple different iterations. Stack Overflow wants me to add more ...
0
votes
1
answer
901
views
Azure Functions with Python - No job functions found
I'm trying to make an application (let's call it "uploder") that takes in Azure Storage Queue messages, does some work and has no output. However, I'm getting this generic error that's ...
0
votes
1
answer
337
views
How to create connection to create - queue item - HTTP Trigger - local - Azurite - Azure Queue Storage
I installed Azurite and started ( assuming the command is correct.)
azurite --queueHost 127.0.0.1
I created an outqueue using Azure Storage Explorer
I want to test/use this function
const { app, ...
0
votes
0
answers
157
views
Catch "request body too large" error in python on azure functions
Azure storage queue has a message size limit of 64KB. I want to catch this error when it occurs in azure functions. For that I use the following code:
@app.blob_trigger(arg_name='inputFile', path=&...
1
vote
1
answer
442
views
Overwriting Autoscale Rules Of Azure App Service Plan By The Azure Function App?
I have an Azure function app that is under a Dedicated plan (Azure App Service Plan P1V2).
The Azure Function App has a Queue Trigger function for Azure Storage Queues.
I'm looking to approximate FIFO ...
0
votes
0
answers
93
views
throttling azure functions triggered off azure storage queues
I have a system where I have an Azure Storage account with a Queue per tenant.
I want to segregate the tenant messages this is why I have a queue per tenant.
I have an azure function written in c#.
I ...
0
votes
1
answer
166
views
WebJob - supress logs for Azure Queue connection
After upgrading my WebJobs to dotnet 7 everything is working pretty fine, but now it shows logs for connecting to Queues like this:
This is being shown everytime the job checks for new messages (5 ...
0
votes
1
answer
452
views
Python Azure Function, queue-triggered alternative `connection` for `function.json`?
Is there a way to use a Managed Identity (either System or User-assigned) for authenticating a Function and Storage Account?
Example
In a Python Azure Function's function.json file, there is a ...
0
votes
2
answers
582
views
How to all messages on Azure Storage Queue without dequeuing in C# [closed]
I have an Azure Storage Queue and want to create a service to view the contents of for admin-purposes. I know I can view the queue using Storage Explorer, but I want to be able to view the messages (...
1
vote
1
answer
201
views
Duplicate Data Issue when Storing JSON Messages in Azure Storage Queue using Azure Functions in Go
Now I am trying to develop an application using Azure Functions and Go, utilizing Custom Handler.
The architecture of my application is like this.
image
The problem seems to lie in storing a JSON ...
0
votes
1
answer
344
views
Custom Role Permission to allow read on Azure storage account Queue
User has been assigned a custom role with below Actions on an Azure storage account but user sees This request is not authorized to perform this operation:
{
"id": ..,
"...
0
votes
1
answer
88
views
Approach on queue implementation for failover in azure
We have azure api gateway for inbound and outbound calls for our application .
We need a queue for failed cases with exponential time logic for retry mechanism .
I need to know what will be the best ...
0
votes
1
answer
86
views
Azure Data Factory ForEach Parsing QueueMessageList
I am using the dynamic expression below in ForEach Items to feed QueueMessageText from a QueueMessageList into subsequent pipeline process
@json(xml(activity('get_queue_message').output.Response))....
0
votes
1
answer
186
views
Parsing Azure Blob Queue Message in Azure Data Factory
I use the Azure Data Factory Web Activity to get Queue Messages from azure blob storage.
{
"Response": "
<?xml version=\"1.0\" encoding=\"utf-8\"?>
<...
0
votes
1
answer
555
views
Error in Queue Trigger - The input is not a valid Base-64 string
I'm working in Azure Queue storage and Azure functions queue trigger. I'm using the c# console project to send a class object as a message to the Azure queue and then setting up a queue trigger ...
0
votes
1
answer
2k
views
Sending Class object as messages to Azure Queue Storage
I'm working on a c# console project to send a class object as a message to the Azure queue.
public class Myclass
{
public string? Userid { get; set; }
}
class Program
{
static async Task Main(string[...
0
votes
1
answer
228
views
Getting Azure Blob Queues Message from Azure Data Factory Web Activity
I am trying to use Azure Web Activity to get the queues message from Azure Blob Storage. The message will then be parsed to obtain the parameter that I need in subsequent part of the data pipeline.
I ...
0
votes
1
answer
456
views
How to write message into Azure storage queue with DefaultAzureCredential
Following issue: The below code snippet works to the point, where the queue is created with queue.createIfNotExists();:
import com.azure.identity.DefaultAzureCredential;
import com.azure.storage.queue....
0
votes
1
answer
332
views
Azure Function with EventGridTrigger - Singleton Attribute not working
I try to set a SingletonAttribute to a Azure Function with a EventGridTrigger:
[Singleton("{Subject}")]
public void Run([EventGridTrigger] EventGridEvent eventGridEvent, ILogger logger)
{
...
1
vote
1
answer
418
views
How to send the bunch of messages at a time to Azure Storage Queue using Azure Logic App?
Action 1: Recurrence Trigger for every 5 Seconds.
Action 2: Sending Multiple Messages at a time
Above design send one message for every 5 seconds but not the multiple messages to the specified ...
1
vote
1
answer
883
views
How to bind queue-triggered Azure Function to a custom object
While writing a queue-triggered Azure Function I read that, by default, it expects a base-64 encoded string, but that it can also bind to a POCO.
Access the message data by using a method parameter ...
1
vote
1
answer
734
views
Checking if an Azure Storage Queue exists
I would like to check if an Azure Storage Queue exists by calling the Azure.Storage.Queues.ExistsAsync(CancellationToken cancellationToken = default) method within the Azure Storage v12 API. I am ...
0
votes
1
answer
262
views
Azure Storage Queue to Cosmos DB
I am trying to receive a payload from a http trigger and send payload with an envelope to the Service Bus and eventually Cosmos DB so I can perform CRUD operations.
The payload is properly received ...
0
votes
0
answers
80
views
Azure Queue Trigger no longer works after switching to Azure StorageQueue
Recently upgraded from Microsoft.Azure.Storage.Queue to Azure.Storage.Queues.
After upgrading packages the Queue Trigger no longer picks up the stored queue.
Here's the code for sending messages:
...
0
votes
1
answer
448
views
Error adding item to Azure Storage Queue from Python
Have a (so far) very simple Azure Function in Python. Trying to use Azure Queues for the first time. Modeling off of the tutorial here. When I try to run this I get the following error:
System....
0
votes
1
answer
894
views
unable to create event grid subscription based on storage_queue_endpoint
terraform {
required_providers {
azurerm = {
source = "hashicorp/azurerm"
version = "<= 3.30.0"
}
}
required_version = &...
1
vote
1
answer
1k
views
How to read from an Azure queue in an Azure function, without a Queue Trigger
If I have an Azure Function that produces data for a queue, it's very simple: I just set it up as a parameter to the function:
[Queue("myQueue")] ICollector<MyType> myQueue
Is there ...
0
votes
1
answer
791
views
How to listen to azure storage queue with Node.js?
Azure storage queue is not listening to the message automatically when we push to the queue, we have to write a custom lister in-order to fetch the message from the queue.
import {
...
0
votes
1
answer
2k
views
How to trigger a Container App from Azure Storage Queue?
I'm a bit new to developing in NodeJS and using containers.
I'm developing a small application in NodeJS which listens to an Azure Storage Queue. Now I want the app to be triggered by a new message in ...
0
votes
1
answer
64
views
Azure Function built in VS vs built in portal performance for adding in Storage Queue
I noticed that Adding messages to Storage queue was quite slow (average of 1.5s) from an HTTP Azure Fucntion compared to other functions created on Azure Portal.
To test this, I have created a very ...
0
votes
1
answer
262
views
Store a copy of queue message raw data to somewhere
I'm debugging an Azure Queue Trigger function. I'd like to find a way to inspect the raw message enqueued. The tricky part is the Queue Trigger function is still running, and I have no access to the ...
2
votes
1
answer
377
views
Azure function queue trigger distributed tracing
I have a .NET isolated function with a queue trigger.
When triggering that queue from the storage explorer or from another function using a QueueServiceClient, a new operationId is made up. Thus I ...
0
votes
0
answers
132
views
Will a Queue Storage message that is placed back in the queue always be placed in the front of the queue?
The docs say for Azure Storage queues that:
Messages in Storage queues are typically first-in-first-out, but
sometimes they can be out of order; for example, when a message's
visibility timeout ...
1
vote
0
answers
128
views
How azure storage queue triggered function works?
Use Case
I am trying to set up cypress testing on the azure function. We'll deploy the cypress code on the azure function which runs on Linux VM. Cypress has some system-level dependencies which are ...
0
votes
1
answer
2k
views
Storage account connection string does not exist - deploying Queue storage trigger for Azure Functions
I want to create an azure storage queue triggered azure function. I went through the following tutorial https://learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-storage-queue-trigger
...
0
votes
1
answer
2k
views
Batch message processing from Azure Storage Queue to Function App
What I want to know is if I can grab, let's say, 1000 messages from Storage queue and process them in single Azure Function run.
I am building a system that will merge the messages data of, let's say, ...
1
vote
1
answer
489
views
Azure QueueClient vs CloudQueue
I have been using QueueClient to handle all functionality with the Storage Queue. I noticed in a few examples online that there is a CloudQueue, that has several more methods.
What is the difference ...
2
votes
2
answers
1k
views
azure queue trigger function pull from two different queues
How can I have a single azure queue trigger function connect to two different queues.
Having two bindings like this seems to break it:
{
"disabled": false,
"bindings": [
{
...
2
votes
0
answers
451
views
Trying to get multiple messages from an Azure Storage Queue
I have a node.js Function App which I'm trying to use to retrieve a specific message from a storage queue in order to delete it. It doesnt seem like there is a method to get a specific message by ID, ...
0
votes
1
answer
413
views
Get messageId of message sent to Azure queue with .NET v12 SDK
How can I get the messageId of a message I send to a queue using .NET v12?
This answer https://stackoverflow.com/a/56407472/11636360 in Get message ID in Azure queue shows how it can be done in .NET ...
1
vote
1
answer
2k
views
What's the difference between CloudQueueClient & QueueClient classes in .NET?
For interacting with Azure queue storage .NET provides the CloudQueueClient & QueueClient classes. They can be found via the below links.
CloudQueueClient MS documentation
QueueClient MS ...
0
votes
1
answer
89
views
implement azure Storage queues with ansible
I am trying to implement azure Storage queues with ansible but all what I can find in the docs is the Azure Service Bus queue!
0
votes
1
answer
650
views
Azure Functions Elastic Premium Plan and Queue Triggers
We have a solution where we use an Azure Storage Queue to process messages that take approx 6 minutes.
I've read that the maximum batchSize of Queue messages concurrently processed are 32 per VM.
If ...
0
votes
1
answer
640
views
Issue : Enqueuing the message to azure storage queue is not working with Managed Identity
One of the C# Azure Function App generates messages and put them in azure storage queue, and we would like to use the Managed Identity as we don't want to use the connection strings in the ...
0
votes
1
answer
666
views
Azure Functions and queues
I want to create an app that supports multiple users. Every user can upload multiple files and each file uploaded needs to be processed by a pipeline (for example processing1.exe -> processing2.py -...
1
vote
1
answer
862
views
Azure Managed ID: how to convert azure function from connection string to managed id
I have an Azure function that looks like this:
[FunctionName("CreateWidgetWorkspace")]
public async Task<IActionResult> CreateWidgetWorkspace(
[HttpTrigger(...
0
votes
1
answer
3k
views
Azure LogicApp reading messages from storage queue but not processing
I am setting up an Azure LogicApp to read messages from a storage queue and POST the message to an API endpoint:
The LogicApp triggers as expected and logs a successfull run. I can see my queue ...