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

A solutions architect is designing the cloud architecture for a new application being deployed on AWS. The process should run in parallel while adding and removing application nodes as needed based on the number of jobs to be processed. The processor application is stateless. The solutions architect must ensure that the application is loosely coupled and the job items are durably stored.
Which design should the solutions architect use?

Answer options

Correct answer: C

Explanation

The correct answer is C because using an Amazon SQS queue allows for durable storage of job items and maintains loose coupling between components. The scaling policy based on the number of items in the SQS queue ensures that the application can scale efficiently with the workload. Options A and D incorrectly use Amazon SNS, which does not provide durable storage, while option B uses the wrong metric (network usage) for scaling, which is less relevant for a job processing scenario.