You are planning a serverless processing solution using Azure Functions. You need to configure the hosting plans and execution patterns for your function app. Which of the following statements are correct? (Select TWO)
- The Premium plan provides pre-warmed instances to avoid cold-start latency and supports virtual network integration.Cevap
- To implement a stateful workflow where multiple functions run in a sequence (function chaining), you should use Durable Functions.Cevap
- CThe Consumption plan should be used if you require a guaranteed continuous execution timeout exceeding 30 minutes.
- DFor stateful sequences, you should implement standard stateless HTTP-triggered functions that directly invoke each other sequentially.
Cevap
The Premium plan provides pre-warmed instances and VNet integration, and Durable Functions should be used to implement stateful workflows such as function chaining.
The Premium plan is correct because it offers pre-warmed instances to eliminate cold start and supports VNet integration. Durable Functions is correct because it is specifically designed to manage state and coordinate workflows like function chaining.
Adım Adım Çözüm
Anahtar Kavram
Azure Functions hosting plans and stateful orchestration using Durable Functions