Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
13 views

I'm troubleshooting why async tasks within the durable entity hang forever. My entity looks like this public MyEntity : IMyEntity { [JsonIgnore] private MyService _myService; [JsonProperty] public ...
dotnetdev4's user avatar
1 vote
0 answers
47 views

I have an Azure Durable Function that is triggered when users send SMS messages. I'm using the function to collect multiple messages if they arrive within a short duration, and create one consolidated ...
Rohit Mohan's user avatar
0 votes
1 answer
89 views

Using a Durable Functions template I've created a function that simply starts execution of a method by calling the generated SendEventPostUri request which starts a timer of 60 minutes and completes ...
Mark's user avatar
  • 143
0 votes
1 answer
107 views

I created a very simple Durable function to test the ability of setting a timeout threshold of 60 minutes. My target framework is .NET 8.0 and I using the Isolated model for my function. According to ...
Mark's user avatar
  • 143
0 votes
1 answer
154 views

I have an Azure Durable Function that's scheduled to run every day at 18:00:00 UTC to generate a premium leads report. The function is triggered, but sometimes it doesn't complete or seems to silently ...
Shashimk's user avatar
0 votes
1 answer
199 views

I have an Azure Durable Function that worked before I added custom middleware. Do Azure Functions work with custom middleware? I've added the middleware to manage custom authentication and to ...
EnenDaveyBoy's user avatar
0 votes
1 answer
62 views

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 ...
user989988's user avatar
  • 3,886
0 votes
0 answers
74 views

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 ...
Appu Mistri's user avatar
0 votes
0 answers
27 views

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:...
Igor Shmukler's user avatar
0 votes
1 answer
57 views

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": &...
sschmeck's user avatar
  • 7,793
0 votes
1 answer
327 views

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 ...
soumyadeb ghoshal's user avatar
0 votes
1 answer
139 views

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 ...
anilcreates's user avatar
1 vote
1 answer
85 views

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 ...
Dorian-B's user avatar
1 vote
1 answer
114 views

I created a azure durable function in .net6 here its code snippet I'm facing two issues Orchestrator function wont complete despite all activity function execution completes without any exception ...
Dark S's user avatar
  • 332
0 votes
1 answer
158 views

I have a durable orchestration for an ETL job that downloads data from an external API. The token for the external API is stored in an Azure Key Vault. The orchestration triggers several ...
Dorian-B's user avatar
0 votes
2 answers
155 views

we are trying to figure out how to alter the default 202 response, and add custom headers on success from called trigger function. Reason we are trying to do so, is preserving already existing ...
Michal B.'s user avatar
0 votes
1 answer
366 views

I have a project with an Azure function that have two http triggers functions. import azure.functions as func from func_utils.main_func import http_trigger_function from func_utils.get_data_trigger ...
Henry Requena's user avatar
0 votes
0 answers
111 views

I am working on a solution that uses Azure Durable Functions to perform multiple parallel tasks in the ExchangeOnlineManagement module, collecting the Unified Audit Log to improve efficiency and speed ...
83jahs8's user avatar
  • 63
0 votes
1 answer
436 views

I'm developing a queue trigger for an Azure Durable Function. When using the "queue_trigger" decorator, I'm required to provide a connection string. However, I need to avoid using a ...
user25648715's user avatar
0 votes
1 answer
120 views

I have a timer-triggered durable Azure function mentioned by Ikhtesam Afrin in this post. I had it in the consumption plan and it was working fine. I have deployed it in the App plan (B3). On the home ...
NutsAndBolts's user avatar
0 votes
1 answer
203 views

I am currently facing a very strange issue with the code I wrote for an Azure Function. It works fine in the UAT environment and also works locally when using local.settings.json to connect to the ...
Learning azure's user avatar
0 votes
1 answer
89 views

I am trying to deploy a python Quart application to Azure function with Docker. Below is my Docker file. My Azure function is failing to start. I get "Application error" when accessing the ...
Rajesh Nayak's user avatar
1 vote
0 answers
137 views

I have Durable Functions in Azure Functions App and recently noticed that the Functions App is making a lot of transactions to the Blob Storage attached to the Functions App. The app makes roughly 37,...
Toivo Mattila's user avatar
0 votes
2 answers
880 views

I am having very bad experiencie with durable functions, So the case is that I have the following code: public async Task RunOrchestrator([OrchestrationTrigger] TaskOrchestrationContext context, ...
Redduke's user avatar
  • 39
0 votes
2 answers
196 views

I have an http triggered azure function that starts an orchestrator function. In my dev tenant the code runs without a problem but when deploying to another tenant there has been nothing but trouble, ...
user2906011's user avatar

1
2 3 4 5
17