Medium1 markMultiple Choice
AWS SAA-C03 · Question 32 · Domain 2.3: Decoupling Mechanisms
A company wants to build an event-driven architecture. When a new file is uploaded to Amazon S3, an event should trigger two independent processing workflows simultaneously. One workflow updates a database, and the other generates a thumbnail. Which TWO services should be combined to achieve this decoupled architecture? (Select TWO.)
A company wants to build an event-driven architecture. When a new file is uploaded to Amazon S3, an event should trigger two independent processing workflows simultaneously. One workflow updates a database, and the other generates a thumbnail. Which TWO services should be combined to achieve this decoupled architecture? (Select TWO.)
Answer options:
A.
Amazon SNS
B.
Amazon Kinesis Data Firehose
C.
Amazon SQS
D.
AWS Step Functions
E.
Amazon MQ
How to approach this question
Look for the 'Fanout' pattern: SNS pushes to multiple SQS queues.
Full Answer
A,C
This scenario describes the 'Fanout' pattern. Amazon S3 sends an event to an Amazon SNS topic. The SNS topic has multiple Amazon SQS queues subscribed to it. SNS pushes the message to all subscribed queues simultaneously, allowing independent microservices to process the event at their own pace.
Common mistakes
Choosing Step Functions. While Step Functions has a Parallel state, SNS+SQS is the standard decoupling mechanism for independent asynchronous event fanout.
Practice the full AWS SAA-C03 Practice Exam 1
65 questions · hints · full answers · grading
More questions from this exam
Q01A company has multiple AWS accounts in an AWS Organizations organization. The security team wants...MediumQ02A solutions architect is designing an application that will run on Amazon EC2 instances. The appl...EasyQ03A company wants to implement a federated identity solution for its employees to access the AWS Ma...MediumQ04A mobile application needs to access Amazon DynamoDB directly to read user-specific data. The app...HardQ05A company is hosting a web application on Amazon EC2 instances. The application connects to an Am...Medium
Expert