AZ-204 · Question #16
Case Study 7 - Proseware, Inc Background You are a developer for Proseware, Inc. You are developing an application that applies a set of governance policies for Proseware's internal services…
The correct answer is B. Ensure that the Azure Function is using an App Service plan. D. Set Always On to true. Always On enables waking up on HTTP trigger, but does not prevent the exceeding the max time out time of 230 seconds. If your function app is on the Consumption plan, there can be up to a 10-minute delay in processing new blobs if a function app has gone idle. To avoid this…
Question
Options
- AEnsure that the Azure Function is set to use a consumption plan.
- BEnsure that the Azure Function is using an App Service plan.
- CSet Always On to false.
- DSet Always On to true.
How the community answered
(25 responses)- A16% (4)
- B76% (19)
- C8% (2)
Explanation
Always On enables waking up on HTTP trigger, but does not prevent the exceeding the max time out time of 230 seconds. If your function app is on the Consumption plan, there can be up to a 10-minute delay in processing new blobs if a function app has gone idle. To avoid this latency, you can switch to an App Service plan with Always On enabled. You can also use an Event Grid trigger with your Blob storage account. https://docs.microsoft.com/en-us/azure/azure-functions/dedicated-plan#always-on https://github.com/Azure/Azure-Functions/wiki/Enable-Always-On-when-running-on-dedicated- App-Service-Plan https://docs.microsoft.com/en-us/azure/storage/blobs/storage-blob-event-overview https://docs.microsoft.com/en-us/azure/azure-functions/functions-bindings-storage-blob- trigger?tabs=csharp#event-grid-trigger
Topics
Community Discussion
No community discussion yet for this question.