AWS Certified Solutions Architect – Associate (SAA-C03) — Question 38

A company is designing an application. The application uses an AWS Lambda function to receive information through Amazon API Gateway and to store the information in an Amazon Aurora PostgreSQL database.
During the proof-of-concept stage, the company has to increase the Lambda quotas significantly to handle the high volumes of data that the company needs to load into the database. A solutions architect must recommend a new design to improve scalability and minimize the configuration effort.
Which solution will meet these requirements?

Answer options

Correct answer: D

Explanation

Option D is correct because using Amazon SQS allows for decoupling the two Lambda functions, enhancing scalability and managing high data volumes without overwhelming a single function. Option A suggests a complete refactor to EC2, which increases complexity and management overhead. Option B shifts to DynamoDB, which may not be suitable for all use cases requiring relational data, and DAX is not needed for Aurora. Option C uses SNS, which is more suited for pub/sub patterns rather than managing data flows effectively.