ExamGecko
Question list
Search
Search

List of questions

Search

Related questions











Question 12 - SAA-C03 discussion

Report
Export

A company has an application that ingests incoming messages. These messages are then quickly consumed by dozens of other applications and microservices. The number of messages varies drastically and sometimes spikes as high as 100,000 each second.

The company wants to decouple the solution and increase scalability.

Which solution meets these requirements?

A.
Persist the messages to Amazon Kinesis Data Analytics. All the applications will read and process the messages.
Answers
A.
Persist the messages to Amazon Kinesis Data Analytics. All the applications will read and process the messages.
B.
Deploy the application on Amazon EC2 instances in an Auto Scaling group, which scales the number of EC2 instances based on CPU metrics.
Answers
B.
Deploy the application on Amazon EC2 instances in an Auto Scaling group, which scales the number of EC2 instances based on CPU metrics.
C.
Write the messages to Amazon Kinesis Data Streams with a single shard. All applications will read from the stream and process the messages.
Answers
C.
Write the messages to Amazon Kinesis Data Streams with a single shard. All applications will read from the stream and process the messages.
D.
Publish the messages to an Amazon Simple Notification Service (Amazon SNS) topic with one or more Amazon Simple Queue Service (Amazon SQS) subscriptions. All applications then process the messages from the queues.
Answers
D.
Publish the messages to an Amazon Simple Notification Service (Amazon SNS) topic with one or more Amazon Simple Queue Service (Amazon SQS) subscriptions. All applications then process the messages from the queues.
Suggested answer: D

Explanation:

https://aws.amazon.com/sqs/features/

By routing incoming requests to Amazon SQS, the company can decouple the job requests from the processing instances. This allows them to scale the number of instances based on the size of the queue, providing more resources when needed. Additionally, using an Auto Scaling group based on the queue size will automatically scale the number of instances up or down depending on the workload. Updating the software to read from the queue will allow it to process the job requests in a more efficient manner, improving the performance of the system.

asked 16/09/2024
mohammed zakir
38 questions
User
Your answer:
0 comments
Sorted by

Leave a comment first