Question 626:
You are uploading large files to AWS S3 bucket, ranging from 1GB – 3GB. Your organization has a requirement to calculate the hash checksum of the file by reading entire file so the users can validate the checksum to identify any potential corruptions during downloads. For this, you created a Lambda function and getting it triggered through S3 notifications. However, the request is getting timed out. What could be the reason?
Answer options:
A.Lambda function is configured with minimal memory of 128 MB.B.Lambda function is set to run in a private VPC without NAT Gateway or VPC Endpoint. C.You have not setup S3 bucket name in the environment variable. D.Lambda function is created in a different region than S3 bucket.