azure-storage-queues Questions
3
Solved
I am getting duplicate messages from Azure Storage Queue. I am sure that my function is getting executed only once as I am logging the message in the database in the same function. After clicking o...
Prosperus asked 24/8, 2020 at 7:5
6
Solved
I'm trying to find a way to pass objects to the Azure Queue. I couldn't find a way to do this.
As I've seen I can pass string or byte array, which is not very comfortable for passing objects.
Is ...
Calculation asked 18/12, 2011 at 8:52
6
I've been using Azure Storage Queues to post messages too, then write the messages to a db table. However I've noticed that when an error occurs processing messages on the queue, the message is wri...
Standfast asked 23/10, 2017 at 12:45
2
Solved
When i read the documentation about visibilityTimeout: https://learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-storage-queue#host-json it says "The time interval between retries ...
Meehan asked 19/4, 2019 at 6:38
3
Solved
I am using Azure Functions Preview and want to add a QueueTrigerFunction.
The function is defined as such:
[FunctionName("QueueTrigger")]
public static void Run([QueueTrigger("testqueue1", Conne...
Rondelet asked 5/8, 2017 at 1:10
2
Solved
I'm using Azure Queue to send emails. But for last time I'm getting exception about queue size limit up to 65536 bytes even after cheking the message size.
Terryl asked 16/9, 2016 at 10:9
2
Solved
I have tried everything I can think of to increase the speed of inserts. Which is really only a couple of things with no improvement.
I have chunks of identifiers (Int64) that I need to send to a ...
Fiume asked 22/10, 2013 at 17:12
6
Solved
Just a quick question regarding an Azure application. If I have a number of Web and Worker roles that need to communicate, documentation says to use the Azure Queue Service.
However, I've j...
Chimene asked 15/12, 2009 at 9:35
1
I am using an Azure webjob with queue triggered functions to listen on several Azure queues. The processing method for each queue is identical (but the queues still need to be separate). I was wond...
Godunov asked 3/5, 2018 at 7:6
2
Solved
I want to read all messages of an Azure Queue Storage and write them into a Blob. Ideally I would like to read batches of 10000 or more and write them into a Blob.
I am using Azure Cloud Functions...
Butler asked 18/2, 2018 at 19:54
3
Solved
If I create an Azure Function that is triggered by storage queue messages... will the system launch multiple parallel functions to reach each message from the queue or will a single function get ca...
Filtration asked 25/6, 2017 at 18:5
2
I am getting the following error with my storage queue (NOT BLOB - I know others have seen this with the blob) when pushing the message from my c++ app to Azure Storage:
The request body is too ...
Mealy asked 15/8, 2017 at 12:19
3
I would like to have my queue retry failed webjobs every 90 minutes and only for 3 attempts.
When creating the queue i use the following code
CloudQueueClient queueClient = storageAccount.Create...
Trochaic asked 17/2, 2015 at 9:27
1
Solved
How can I design my Azure Function hosting for flexible test/production queue isolation?
I am planning to write 6 precompiled Azure Functions in C# packaged as single DLL and have yet to to decide...
Crone asked 4/7, 2017 at 8:44
1
Solved
I have a TimerTrigger function and the Output binding is a Azure Queue.
The idea is that every 10 minutes the timer will run, it will look at a view in my database and iterate through any rows ret...
Sorilda asked 4/3, 2017 at 3:17
1
Solved
I'm working out a scenario where a post a message to an Azure Storage Queue. For testing purposes I've developed a console app, where I get the message and I'm able to update it with a try count, a...
Darcydarda asked 12/10, 2016 at 19:0
1
Solved
I have successfully create a storage account on Azure with the following settings:
Deployment: Resource manager
Type: General Purpose (Standard)
Replication: ZRS
On the Azure portal I can see a...
Extravascular asked 2/6, 2016 at 17:48
1
Solved
The title pretty much explains my question:
If there are no messages in the Storage Queue, why would it not just return 0, assuming we were able to get the queue reference and make a connection? I...
Scum asked 18/5, 2016 at 16:47
2
Solved
When Webjobs get a message from a queue on Azure Storage via QueueTrigger, it leases the message (makes it invisible). If the triggering function (of webjob) takes a long time to process the messag...
Mezzotint asked 15/2, 2016 at 14:34
2
Scenario: producer send a message into the Storage Queue, a WebJobs process the message on QueueTrigger, each message must only be processed once, there could be multiple WebJob instances.
I've be...
Demy asked 6/8, 2015 at 17:33
2
I'm using Azure Webjobs to process messages from a queue.
I saw that the Webjobs SDK processes any failed message again after 10 minutes, and it if fails 5 times it moves it to the poison queue (1...
Curbing asked 6/7, 2015 at 11:29
2
Solved
If I were to get a message from queue using Azure.Storage.Queue
queue.GetMessage(TimeSpan.FromMinutes(20));
I can set the visibility timeout, however when trying to use Azure.WebJobs (SDK 0.4.0-...
Ferruginous asked 14/11, 2014 at 19:51
1
I am assessing Azure Queue Storage to communicate between two decoupled applications.
My requirement is to send a file (flat file, size: small to large) in the queue message.
As per my reading an...
Hinton asked 22/6, 2015 at 11:57
1
Solved
public static void ProcessMessage([QueueTrigger("queue")] string message, TextWriter log)
{
//processing message
}
How exactly this method will be triggered.
Is WebJob host just poling the Sto...
Wyly asked 7/1, 2015 at 12:1
1
Solved
I have a queue in Azure storage named for example 'messages'. And every 1 hour some service push to this queue some amount of messages that should update data. But, in some cases I also push to thi...
Inwrought asked 19/1, 2014 at 16:12
1 Next >
© 2022 - 2024 — McMap. All rights reserved.