Topic 1 Question 342
A company uses an AWS Lambda function to call a third-party service. The third-party service has a limit of requests each minute. If the number of requests exceeds the limit, the third-party service returns rate-limiting errors.
A developer needs to configure the Lambda function to avoid receiving rate limiting errors from the third-party service.
Which solution will meet these requirements?
Set the reserved concurrency on the Lambda function to match the number of concurrent requests that the third-party service allows.
Decrease the memory that is allocated to the Lambda function.
Set the provisioned concurrency on the Lambda function to match the number of concurrent requests that the third-party service allows.
Increase the timeout value that is specified on the Lambda function.
ユーザの投票
コメント(4)
- 正解だと思う選択肢: A
Correct answer is A. This will limit the lambda function to a defined concurrency which can be set to match the third party vendor limits. B - will lower the cpu of the function, not limit the invocations. C - Provisioned concurrency is a minimum value to keep lambda function execution environments on warm standby for critical workloads. D - Issue isn't with timeouts or lack of processing power
👍 8DeaconStJohn2024/09/26 - 正解だと思う選択肢: A👍 5KarBiswa2024/09/22
- 正解だと思う選択肢: D👍 1KarBiswa2024/09/22
シャッフルモード