You are developing Azure Durable Functions to manage vehicle loans.
In the loan process, there are several actions that must be executed in a specific sequence. One of these actions involves a customer credit check process, which might take several days to complete.
To implement Azure Durable Functions for this loan processing, which type of Azure Durable Function should you use?
Select an option, then click Submit answer.
Reference / correct answer:
The correct Azure Durable Function type to use in this scenario is the "orchestrator" function. Orchestrator functions are designed to coordinate the execution of multiple tasks in a specific order and manage long-running processes, including those with complex chaining and waiting logic. This is particularly suitable for scenarios like vehicle loan processing, where actions might take varying amounts of time to complete, such as customer credit checks.
https://learn.microsoft.com/en-us/azure/azure-functions/durable/durable-functions-overview