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
625 Views Asked by Dan Persson At
1
There are 1 best solutions below
Related Questions in AZURE-DURABLE-FUNCTIONS
- Is there a way to schedule "Reminders" in Durable Entities of Azure Durable Functions?
- Orchestrator function failed: The activity function failed: "Unable to resolve function name"
- Durable Functions - Is Round robin activity scheduling possible?
- How to terminate a Durable orchestration with custom status in Azure Durable Functions
- Azure Durable Function HttpStart failure: Webhooks are not configured
- Azure durable orchestration function doesn't exist, is disabled, or is not an orchestrator function
- Waiting for durable entity value to change
- Cleanup on termination of durable function
- Scheduled signal to Durable Entity fires immediately in Azure Durable Functions
- Azure function shows 'Running' in application insight but postman shows 'completed'
- How to code for a bigger cold start in FaaS
- Azure Durable Functions: passing storage connection string based on tenant id, how to do this
- How to Deploy Python Code from Azure Repository to Azure Function(Linux Based) App using Azure Pipeline
- How to Send Orchestrator Function Result Back To Caller To Update UI
- How to output to Blob service with Durable functions
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 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.