Ultimate access to all questions.
Upgrade Now 🚀
Sign in to unlock AI tutor
An application stores JSON data in Amazon S3, processed by a Lambda function before loading into a DynamoDB table. With fluctuating traffic causing throttling issues, what strategy should be implemented to consistently load data without throttling?
A
Split the Lambda into two, using an SQS queue for data transformation and loading into DynamoDB.
B
Enable DynamoDB auto scaling and monitor capacity with Amazon CloudWatch.
C
Use Lambda function aliases with provisioned concurrency.
D
Refactor Lambda into two, with one for data storage in DynamoDB and the other for post-storage data processing via a DynamoDB stream.