AZ-204 · Question #395
Note: This question is part of a series of questions that present the same scenario. Each question in the series contains a unique solution that might meet the stated goals. Some question sets might…
The correct answer is A. Yes. Regardless of the function app timeout setting, 230 seconds is the maximum amount of time that an HTTP triggered function can take to respond to a request. This is because of the default idle timeout of Azure Load Balancer. For longer processing times, consider using the…
Question
Options
- AYes
- BNo
How the community answered
(41 responses)- A73% (30)
- B27% (11)
Explanation
Regardless of the function app timeout setting, 230 seconds is the maximum amount of time that an HTTP triggered function can take to respond to a request. This is because of the default idle timeout of Azure Load Balancer. For longer processing times, consider using the Durable Functions async pattern or defer the actual work and return an immediate response. https://docs.microsoft.com/en-us/azure/azure-functions/functions-scale#timeout
Topics
Community Discussion
No community discussion yet for this question.