DEV Community

Marc Duiker for Xebia Microsoft Services

Posted on • Originally published at blog.marcduiker.nl on

Discovering the Durable Functions API - Purge & Terminate Orchestrations (DurableOrchestrationClient part 3)

Methods in DurableOrchestrationClientBase

DurableOrchestrationClient(Base) class - Purge & Terminate

This post is the third part of a series of blogs/vlogs to discover the Durable Functions API.

In the video linked below, I’m looking into the functionality from the DurableOrchestrationClient(Base) class which is used to:

  • Purge the history of orchestration instances
  • Terminate a running orchestration

Purging

Purging the history of orchestration instances means deleting the records from table storage. I recommend doing this regularly, for instance using timer triggered function, so you won’t clutter up your storage account with gigabytes of data you likely don’t need. I usually remove all completed instances older than a week but keep the failed, canceled and terminated ones a bit longer. Make sure you don’t inadvertently purge the running and pending instances!

There are two methods to purge the history of orchestration instances. The first method listed below deletes the history for multiple orchestration instances. The method requires a DateTime range and a collection of OrchestrationStatus enum values. These arguments act as a filter, so only the instance history within the DateTime range and selected statuses are purged:

Task<PurgeHistoryResult> PurgeInstanceHistoryAsync(
    DateTime createdTimeFrom, 
    DateTime? createdTimeTo, 
    IEnumerable<OrchestrationStatus> runtimeStatus);
Enter fullscreen mode Exit fullscreen mode

The second method deletes the history of a single orchestration instance:

Task<PurgeHistoryResult> PurgeInstanceHistoryAsync(
        string instanceId);
Enter fullscreen mode Exit fullscreen mode

Termination

Terminating an orchestration instance means you stop a running orchestration. You only change the state of the instance. The instance history is still available in table storage. Using this method should only be used in exceptional cases. Perhaps you have an orchestration with a bug, so it keeps running forever, and you want it to stop.

The method requires an orchestration instance ID and a reason why you are stopping the instance:

Task TerminateAsync(string instanceId, string reason);
Enter fullscreen mode Exit fullscreen mode

Video

Here’s the video, please give it a thumbs up if you like it and subscribe to my channel if you haven’t done so already:

Resources

Links to other posts in this series

Top comments (0)