underwater
underwater

Reputation: 231

Is it possible to run durable azure functions on premises or locally

just reading on azure durable functions for writing business process, and was wondering if this offering is necessarily bundled with azure, or if the runtime can be hosted on premises or locally etc ?

Upvotes: 2

Views: 1786

Answers (1)

anon
anon

Reputation:

Yes! You can run the Azure Functions (Normal or Durable Functions) on-premises rather than in Azure.

In 3 Ways, you can run Azure Functions on-premises:

  1. Using Azure Functions Core Tools
  2. Using Azure Functions Docker Container Image
  3. Using KEDA (Kubernetes-based Event Driven Autoscaling) in which Azure Functions supports it.

Please refer to this MSFT Doc for more information.

Upvotes: 4

Related Questions