813 questions
0
votes
1
answer
26
views
Azure Durable Functions not working with Custom Middleware (C#)
I have an Azure Durable Function that worked before i added custom middleware, does azure functions work with custom middleware?
I have added the middleware to manage custom authenication and to ...
0
votes
1
answer
23
views
How to batch 3 incoming HTTP chat messages in Azure Durable Functions (Isolated .NET)?
I'm trying to process chat messages using Azure Durable Functions (in the .NET Isolated Worker). Sometimes 3 or more messages are sent within a short timeframe, and I want to batch or debounce them ...
0
votes
1
answer
42
views
delete blobs only after reading blobs
I have an Azure Durable function in which I need to read a few blobs in "blobs" path, upload a new blob and once that's complete, delete the blobs in "blobs" path
filePath = await ...
0
votes
1
answer
73
views
append blob with .NET appending data to separate arrays
[FunctionName(nameof(MembersReaderFunction ))]
public async Task<string> GetMembersAsync([ActivityTrigger] MembersReaderRequest request)
{
var response = await ...
0
votes
0
answers
50
views
How to invoke durable function activity from within a callback function?
I'm trying to consume messages from kafka topic using Azure durable function and as the new messages arrive I want to invoke the activity function to process the messages. The problem here is that the ...
0
votes
2
answers
73
views
Durable Function with Service Bus: Messages Sometimes Not Processed by My Function App, Yet Logic Still Runs
My Function App is using Azure Durable Functions triggered by Service Bus to process scheduled messages.
Sometimes, these messages aren't being received by my Function App but the messages disappear ...
0
votes
0
answers
25
views
Change generator invocation to get rid of subgenerators
I am trying to upgrade my code currently using azure durable-functions library from 1.5 to 2.0. As a part of the change, I would to get rid of the subgenerators usage.
Currently, my code is written as:...
-1
votes
1
answer
59
views
While working on durable function in azure apps i got this error while it published to online it is perfectly work in local host
"message": "Function 'UpdateCustomerDetails_Orchestrator' failed with an unhandled exception.",
"details": "Microsoft.Azure.WebJobs.Host.FunctionInvocationException: ...
0
votes
1
answer
51
views
Failed to find binding?
I have an Azure Function App which runs with Node.js. The project uses the following dependencies (from package.json).
"@azure/functions": "4.2.0",
"durable-functions": &...
0
votes
1
answer
54
views
Trouble handling user input in an azure durable function in C#
I have an Azure durable function in C# and endpoint is triggered starting the durable function with basic info, and action function is called and creates a record in a database.
Now the durable ...
0
votes
1
answer
90
views
ADO pipeline breaks because of grpc dll not compiled with control flow guard
I am working on a Azure Durable Function in Isolated Worker Model and using durable task extension "Microsoft.Azure.Functions.Worker.Extensions.DurableTask" for the same. This package ...
1
vote
1
answer
57
views
azure durable functions PurgeInstanceHistoryAsync not working
After making the framework upgradation for the existing durable functions project the cleanup job which was triggered on an time interval is failing
{"odata.error":{"code":"...
0
votes
1
answer
74
views
Durable function retry settings
I wrote an Azure Function App with Durable Functions. While testing with a large dataset, I realized that the functionTimeout value was 10 mins. This caused some of the orchestrations to timeout. Thus ...
1
vote
1
answer
76
views
Durable Functions - objects returned by Activity Function are empty in orchestrator
I'm using Azure Durable Functions and have an activity that returns a list of objects of my custom class.When I check the result in the Activity Function before it's returned, everything seems correct....
1
vote
1
answer
71
views
How to access a durable entity from a DelegatingHandler?
I have a durable functions orchestration, where I need to rate-limit the requests to an external API. There are a bunch of tasks in the orchestrator that invoke a 'DownloadData' function with ...