Is it possibly to somehow get notified that the durable function as been or about to be terminated, such that it is possibly to initiate cleanup of the already finished activity functions for example? In my example we're sending multiple requests to a subsystem and need to revoke or refund the orders in case of the durable function is being terminated.
Cleanup on termination of durable function
628 Views Asked by Dan Persson At
1
There are 1 best solutions below
Related Questions in AZURE-DURABLE-FUNCTIONS
- POST a 50MB file to an Azure Durable Function app
- Azure Durable Functions PowerShell - Strange orchestrator behavior
- Microsoft.Azure.WebJobs.Script.Workers.Rpc.RpcException: Result: Failure Exception: TypeError: Object of type coroutine is not JSON serializable
- Using MassTransit to invoke a DurableTaskClient function
- Azure Durable Functions: External events not working properly in Orchestration
- CsvReader.Read / CsvReader.ReadAsync duplicates data
- Post a large file for analysis by an Azure Durable Function
- How to run long running tasks in azure functions with consumption plan
- How to unit test azure durable function in javascript for v4?
- Azure Durable functions: How to use ManagedIdentity connection in ServiceBusTrigger
- Unit Testing Isolated Model Azure Durable Function Orchestrator in .Net 8
- Unable to Resolve Service for FunctionsDurableClientProvider
- How can error stack traces be logged in Azure Durable Functions for Typescript?
- There are anyways to use WaitForExternalEvent in sub-orchestration?
- Azure durable function : processing a list
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
I don't believe that there is any way to subscribe to Terminatation events in Durable Functions, as the Durable Task Framework handles this before user code is ever invoked.
One option instead of using the explicit terminate API built into Durable Functions is to instead listen to some
CustomTerminateevent within your orchestration, using aTask.WhenAny()approach whenever you schedule an activity or suborchestration. Then, if you ever receive thisCustomTerminateevent instead of the Activity or SubOrchestration response, you could manually handle the cleanup at this point.