How to rewind failed orchestration instance of durable azure function

Sneha N. Patil 45 Reputation points
2024-10-01T16:38:58.2766667+00:00

I am working on migration of azure function from .net core 3.1 to dot net 8 and also migration from in-process to isolated worker process. In the .net core 3.1 version of function, we are using 'RewindAsync' function of IDurableOrchestrationClient from Microsoft.Azure.WebJobs.Extensions.DurableTask package. But this 'RewindAsync' function is not available in isolated worker model packages. How should we handle this in .net 8 version of function?

Azure Functions
Azure Functions
An Azure service that provides an event-driven serverless compute platform.
5,911 questions
{count} votes

Accepted answer
  1. Ryan Hill 30,281 Reputation points Microsoft Employee Moderator
    2024-10-03T01:18:28.04+00:00

    Hey @Sneha N. Patil

    So, this missing feature is being tracked in Rewind support · Issue #21 · microsoft/durabletask-dotnet (github.com). As a workaround though, you can use the built in HTTP API, HTTP APIs in Durable Functions - Azure Functions | Microsoft Learn, until the SDK properly supports it.

    1 person found this answer helpful.

0 additional answers

Sort by: Most helpful

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.