Topic 1 Question 521
A company is hosting an Amazon AP! Gateway REST API that calls a single AWS Lambda function. The function is infrequently invoked by multiple clients at the same time.
The code performance is optimal, but the company wants to optimize the startup time of the function
What can a developer do to optimize the initialization of the function?
Enable API Gateway caching for the REST API.
Configure provisioned concurrency for the Lambda function.
Use Lambda proxy integration for the REST API.
Configure AWS Global Accelerator for the Lambda function.
ユーザの投票
コメント(2)
- 正解だと思う選択肢: B
Provisioned concurrency – This is the number of pre-initialized execution environments allocated to your function. These execution environments are ready to respond immediately to incoming function requests. Provisioned concurrency is useful for reducing cold start latencies for functions. Configuring provisioned concurrency incurs additional charges to your AWS account.
👍 2xdeveloper2024/12/27 - 正解だと思う選択肢: B
Provisioned concurrency addresses this by pre-warming a specified number of function instances, ensuring that these instances are always ready to handle invocations. This reduces the initialization time (cold start) for the Lambda function.
👍 2e8868352025/02/06
シャッフルモード