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

A company has a legacy data processing application that runs on Amazon EC2 instances. Data is processed sequentially, but the order of results does not matter. The application uses a monolithic architecture. The only way that the company can scale the application to meet increased demand is to increase the size of the instances.

The company’s developers have decided to rewrite the application to use a microservices architecture on Amazon Elastic Container Service (Amazon ECS).

What should a solutions architect recommend for communication between the microservices?

Answer options

Correct answer: A

Explanation

The correct answer is A because using Amazon SQS allows for asynchronous communication between microservices, which is suitable since the order of results does not matter. Options B and C involve notification and Lambda functions, respectively, which may introduce complexities or dependencies that are unnecessary for this scenario. Option D utilizes DynamoDB Streams, which also complicates the architecture when SQS can efficiently handle the decoupling of services.