Hard1 markMultiple Choice
AWS SAA-C03 · Question 34 · Domain 2.3: Decoupling Mechanisms
A company is building an IoT application that receives millions of sensor readings per minute. The data must be ingested in real-time, ordered by the time it was received, and processed by multiple independent consumer applications simultaneously. The data must be retained for 7 days.<br/><br/>Which TWO statements about the appropriate AWS service are correct? (Select TWO.)
A company is building an IoT application that receives millions of sensor readings per minute. The data must be ingested in real-time, ordered by the time it was received, and processed by multiple independent consumer applications simultaneously. The data must be retained for 7 days.<br/><br/>Which TWO statements about the appropriate AWS service are correct? (Select TWO.)
Answer options:
A.
Amazon SQS FIFO should be used.
B.
Amazon Kinesis Data Streams should be used.
C.
The service deletes data immediately after it is read by a consumer.
D.
The service allows multiple consumers to read the same data concurrently.
E.
Amazon SNS should be used.
How to approach this question
Differentiate between message queues (SQS) and data streams (Kinesis).
Full Answer
Amazon Kinesis Data Streams should be used.<br/>The service allows multiple consumers to read the same data concurrently.
Amazon Kinesis Data Streams is a serverless streaming data service that makes it easy to capture, process, and store data streams at any scale. Unlike SQS, Kinesis retains data for a retention period (up to 365 days), allowing multiple consumers to process the same data concurrently.
Common mistakes
Choosing SQS, which deletes messages after processing, preventing multiple independent consumers from reading the entire dataset.
Practice the full AWS SAA-C03 Practice Exam 6
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 company has two AWS accounts: Account A for development and Account B for production. Developer...MediumQ03A mobile application needs to authenticate users using their social media accounts (Facebook, Goo...EasyQ04A company is running an application on Amazon EC2 instances. The application needs to connect to ...MediumQ05A company has 50 AWS accounts managed by AWS Organizations. The IT team wants to implement a cent...Easy
Expert