Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
25 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
Advice
0 votes
0 replies
35 views

I have build my project using Azure Functions, my project has core projections which hold core projects so I have MyProject.Core <PackageReference Include="Microsoft.Azure.Functions.Worker&...
EnenDaveyBoy'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
144 views

I'm developing a bunch of Azure functions (some httpTriggers, some timerTrigger) and they do appears fine when debugging and/or when deploying in Azure portal. Now, I've add an Azure durable function ...
Tanguy Touzard'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
1 vote
0 answers
108 views

If I process a workload of 1k documents it completes in 2 minutes. If I process a workload of 5k documents it completes in 53 minutes. Work is distributed across 20 Activities and I can see 10 ...
Stephen Teodori's user avatar
0 votes
1 answer
112 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
195 views

Is there a way to hide the microsft table activity when viewing the full length of the distributed trace... If I have dozens of sub activities and orchestrations, having this additional noise is ...
Ryu S.'s user avatar
  • 2,101
0 votes
1 answer
162 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
177 views

We recently upgraded our Azure Functions project from .NET 6 to .NET 8 using the isolated worker model. After the upgrade, durable orchestrations that were originally created in .NET 6 are no longer ...
user30535254's user avatar
0 votes
1 answer
211 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
54 views

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 ...
Joost's user avatar
  • 143
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,896
0 votes
1 answer
89 views

[FunctionName(nameof(MembersReaderFunction ))] public async Task<string> GetMembersAsync([ActivityTrigger] MembersReaderRequest request) { var response = await ...
user989988's user avatar
  • 3,896
0 votes
0 answers
79 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
2 answers
171 views

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 ...
ksatione's user avatar
0 votes
0 answers
31 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
-1 votes
1 answer
136 views

"message": "Function 'UpdateCustomerDetails_Orchestrator' failed with an unhandled exception.", "details": "Microsoft.Azure.WebJobs.Host.FunctionInvocationException: ...
Arun Cs'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
79 views

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 ...
EnenDaveyBoy's user avatar
0 votes
1 answer
331 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
1 vote
1 answer
116 views

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":"...
user avatar
0 votes
1 answer
141 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
181 views

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....
rafastryk's user avatar
1 vote
1 answer
87 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
0 votes
1 answer
172 views

I was successfully running Azure Durable Functions locally and now I am not able to run them and am getting the following error. Not sure what has changed -- any pointers on what to look at would be ...
user989988's user avatar
  • 3,896
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
932 views

I followed quickstart-python-vscode and deployed an example Durable Functions app. When I try to call the /api/orchestrators/hello_orchestrator endpoint, I am getting the following error: 2025-01-...
Marek Grzenkowicz's user avatar
0 votes
1 answer
160 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
1 answer
514 views

I followed quickstart-python-vscode and deployed an example Durable Functions app. I cannot call the published function, there are the following errors in the Func App log: [Information] func1-control-...
Marek Grzenkowicz's user avatar
0 votes
2 answers
157 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
137 views

I'm trying to create an eternal orchestrator, but I can't seem to get it working. Here is a snippet of my code. HTTP Trigger @FunctionName("MQMessageOrchestrate") public ...
Carlos Iñigo's user avatar
0 votes
1 answer
369 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
1 answer
178 views

We have a Durable Function with multiple orchestrators and activities. We would like to use a middleware as global exception handler instead of handling it in every orchestrator/activity. We can catch ...
mburm's user avatar
  • 1,525
0 votes
0 answers
112 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
1 vote
1 answer
278 views

I have an Azure function app with a very long running operation. My main goal here is to be able to get the status of the current run by an external process polling for a state. I briefly read about ...
CodeMonkey's user avatar
  • 12.6k
0 votes
1 answer
443 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
432 views

I'm currently developing a durable function to handle large file uploads, and I'm having some issues trying to test activity timeouts locally. In brief, the scenario I'm trying to test is as follows: ...
easuter's user avatar
  • 1,196
0 votes
1 answer
127 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
615 views

I have created a .NET 8 isolated worker durable orch function using C#. I am unable to run the solution in my local as I am having issues while trying to turn on Azurite in my local. I get this error: ...
tartar's user avatar
  • 149
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
1 vote
1 answer
50 views

In one of my orchestrations a timer gets based on a date specified in the orchestration input object. This date sometimes needs to be updated after the orchestration has started. I am currently trying ...
user27982908's user avatar
0 votes
1 answer
90 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
0 votes
1 answer
104 views

I am trying to have an Azure Durable Function with Fan-out/Fan-in in C#. For my orchestrator, I have the following signature. public static async Task TimerStart([TimerTrigger("0 */15 * * * *&...
NutsAndBolts's user avatar
1 vote
0 answers
140 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
2 votes
1 answer
1k views

I would like to have a service that is capable of starting an orchestration. I am using isolated model. Is it possible to inject DurableTaskClient through dependency injection? I tried configuring ...
Vladimir Gaytanov's user avatar
0 votes
2 answers
893 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
1 vote
1 answer
247 views

All my connection strings are added to my Azure Function app via the Azure Portal. In a http function, I'm able to access them through adding IConfiguration to my constructor: private readonly ILogger&...
Tim's user avatar
  • 47
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
0 votes
1 answer
111 views

I'm very new with durable functions V4 in javascript but I cannot get this activity to run properly. I always get an error as apparently I'm not passing in the Instance ID correctly. What am I doing ...
Kevin Wilde's user avatar

1
2 3 4 5
17