Topic 1 Question 401
A company has a monolithic desktop-based application that processes images. A developer is converting the application into an AWS Lambda function by using Python. Currently, the desktop application runs every 5 minutes to process the latest image from an Amazon S3 bucket. The desktop application completes the image processing task within 1 minute.
During testing on AWS, the developer notices that the Lambda function runs at the specified 5-minute interval. However, the Lambda function takes more than 2 minutes to complete the image processing task. The developer needs a solution that will improve the Lambda function's performance.
Which solution will meet this requirement?
Update the instance type of the Lambda function to a compute optimized instance with at least eight virtual CPU (vCPU).
Update the configuration of the Lambda function to use the latest Python runtime.
Increase the memory that is allocated to the Lambda function.
Configure a reserved concurrency on the Lambda function.
ユーザの投票
コメント(2)
- 正解だと思う選択肢: C
By increasing the memory allocation, you leverage more CPU power for your Lambda function, which is likely to reduce the processing time and meet your performance requirements.
👍 7Alabi2024/06/28 - 正解だと思う選択肢: C
memory
👍 17368e4a2024/08/15
シャッフルモード