
Answer-first summary for fast verification
Answer: Using Amazon SQS FIFO queue with an AWS Lambda function for message processing.
The correct answer is A. Amazon Simple Queue Service (Amazon SQS) FIFO queues are designed to ensure the order of message processing, which is essential for maintaining the specific order of event data. By setting up an AWS Lambda function to process messages from the FIFO queue, you can achieve this with minimal operational overhead because the integration between SQS and Lambda is managed by AWS, reducing the need for manual intervention and maintenance. Other options do not guarantee message order or might involve additional operational complexity.
Author: LeetQuiz Editorial Team
Ultimate access to all questions.
No comments yet.
How can a solutions architect process event data in AWS while maintaining the order and minimizing operational overhead?
A
Using Amazon SQS FIFO queue with an AWS Lambda function for message processing.
B
Utilizing Amazon SNS topic for notifications and AWS Lambda as a subscriber.
C
Employing Amazon SQS standard queue with independent AWS Lambda function processing.
D
Configuring Amazon SNS topic with Amazon SQS queue as a subscriber for payload processing.