AWS Certified Solutions Architect – Associate (SAA-C02) — Question 629

A company has an application with a REST-based interface that allows data to be received in near-real time from a third-party vendor. Once received, the application processes and stores the data for further analysis. The application is running on Amazon EC2 instances.
The third-party vendor has received many 503 Service Unavailable Errors when sending data to the application. When the data volume spikes, the compute capacity reaches its maximum limit and the application is unable to process all requests.
Which design should a solutions architect recommend to provide a more scalable solution?

Answer options

Correct answer: A

Explanation

Using Amazon Kinesis Data Streams for ingestion combined with AWS Lambda for processing provides a highly scalable, serverless architecture that can automatically absorb and process sudden spikes in data volume without hitting compute capacity limits. Implementing API Gateway with a quota limit (Option B) would throttle the vendor's data rather than scaling to process it. Options C and D still rely on EC2-based scaling, which is slower to react to sudden real-time spikes compared to the instant scalability of Kinesis and Lambda.