AZ-204 · Question #191
You are developing an Azure Function App that processes images that are uploaded to an Azure Blob container. Images must be processed as quickly as possible after they are uploaded, and the solution…
The correct answer is D. Use an App Service plan. Configure the Function App to use an Azure Blob Storage trigger. Use an App Service plan. Configure the Function App to use an Azure Blob Storage trigger. Consumption plan can cause a 10-min 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…
Question
Options
- AUse an App Service plan. Configure the Function App to use an Azure Blob Storage input trigger.
- BUse a Consumption plan. Configure the Function App to use an Azure Blob Storage trigger.
- CUse a Consumption plan. Configure the Function App to use a Timer trigger.
- DUse an App Service plan. Configure the Function App to use an Azure Blob Storage trigger.
- EUse a Consumption plan. Configure the Function App to use an Azure Blob Storage input trigger.
How the community answered
(25 responses)- A4% (1)
- C8% (2)
- D72% (18)
- E16% (4)
Explanation
Use an App Service plan. Configure the Function App to use an Azure Blob Storage trigger. Consumption plan can cause a 10-min 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. https://docs.microsoft.com/en-us/azure/azure-functions/functions-bindings-storage-blob- trigger?tabs=csharp
Topics
Community Discussion
No community discussion yet for this question.