In process model retirement and webjobs sdk #2940
federiconintex
started this conversation in
General
Replies: 1 comment 1 reply
-
Running Durable Functions directly via the WebJobs SDK will still be supported. The difference is simply that you have to host it in your own process rather than using the Functions host (which plans to discontinue support for the in-process, WebJobs-based hosting). As an example, Azure App Service has built-in support for apps that use the WebJobs SDK. You can use this hosting model to continue running Durable Functions via the WebJobs extension (Microsoft.Azure.WebJobs.Extensions.DurableTask) on App Service compute: https://learn.microsoft.com/en-us/azure/app-service/webjobs-sdk-get-started |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I was interested in running durable functions outside of the standard function host and I was following this article: https://learn.microsoft.com/en-us/azure/azure-functions/durable/durable-functions-webjobs-sdk
Is this option going away given the in-process model is going to be discontinued?
Is there any other way to run durable functions within an existing project that runs the webjobs sdk?
Beta Was this translation helpful? Give feedback.
All reactions