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.Answer
- To implement a stateful workflow where multiple functions run in a sequence (function chaining), you should use Durable Functions.Answer
- 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.
Answer
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.
Step-by-Step Solution
Key Concept
Azure Functions hosting plans and stateful orchestration using Durable Functions