Amazon Kinesis Data Streams for Multiple Independent Consumers
A high-volume analytics dashboard writes streaming click events that must be processed by multiple independent consumers. Which service is most appropriate?
Quick Answer
Kinesis Data Streams fits this scenario because of how it separates producers from consumers: once click events are written into the stream, any number of independent consumer applications can read from it in parallel without competing for or removing the data, since each consumer tracks its own position in the stream rather than deleting records as they're read. That's the key property being tested, a high-volume, real-time event source that more than one downstream system needs to process on its own terms. The shard-level throughput characteristics reinforce why this scales well for that use case: each shard supports a defined number of read transactions per second and a defined data read rate, so the stream can be provisioned to handle both the incoming volume and the number of consumers reading it. This is different from a model where a single message is claimed and processed once, which works for typical queue-style workloads but breaks down as soon as more than one independent system needs to see every event. When a scenario describes streaming or event data that has to be processed by several separate consumers rather than handed off to just one worker, that requirement for repeatable, independent, parallel reads is the signal to reach for Kinesis Data Streams over a single-consumer queuing service.
⚠ Common exam trap
Test-takers frequently confuse Amazon Kinesis Data Streams with Amazon SQS or Amazon SNS, but SQS is a message queue for decoupled point-to-point communication and SNS is a pub/sub notification service, neither of which natively supports multiple independent consumers processing the same stream of data with replay capability.
Answer choices
Why each option matters
Answer the question above first, then reveal the full breakdown to understand why each option is right or wrong.
Correct answer & explanation
✓
Amazon Kinesis Data Streams
Amazon Kinesis Data Streams is the most appropriate service because it is designed for real-time streaming data ingestion and can be consumed by multiple independent consumers in parallel. Each shard within a Kinesis stream supports up to 5 read transactions per second and a total data read rate of 2 MB per second, allowing multiple consumer applications to process the same stream of click events concurrently without interfering with each other.
Answer analysis
Option-by-option breakdown
For each option: why learners choose it and why it is or isn't the right answer here.
- ✗
Amazon Route 53
Why it's wrong here
Route 53 is DNS and does not process event records.
- ✗
Amazon EBS
Why it's wrong here
EBS is block storage for EC2 and not a multi-consumer event stream.
- ✓
Amazon Kinesis Data Streams
Why this is correct
Kinesis Data Streams supports high-throughput event ingestion with multiple consumers reading from the stream.
- ✗
AWS DataSync
Why it's wrong here
DataSync transfers files and object data, not live event streams.
Go deeper
Related to this question
About these practice questions
Courseiva writes every SAA-C03 question from scratch — 302 in total, each with an explanation and a wrong-answer breakdown. None are copied from real exams or dumps. Learn why practice questions differ from exam dumps →
Same concept, more angles
2 more ways this is tested on SAA-C03
These questions test the same concept from different angles. Work through them to make sure you can recognise it however the exam phrases it.
Variation 1. A high-volume analytics dashboard writes streaming click events that must be processed by multiple independent consumers. Which service is most appropriate? The design must avoid adding custom operational scripts.
medium- A.Amazon Route 53
- B.Amazon EBS
- ✓ C.Amazon Kinesis Data Streams
- D.AWS DataSync
Why C: Amazon Kinesis Data Streams is the correct choice because it is designed for real-time streaming data ingestion and processing by multiple independent consumers. Each consumer can read from the stream at its own pace using its own shard iterator, enabling parallel processing of click events without custom scripts. This aligns with the requirement for a high-volume analytics dashboard where multiple downstream applications need to consume the same stream independently.
Variation 2. A high-volume analytics dashboard writes streaming click events that must be processed by multiple independent consumers. Which service is most appropriate? The architecture review board prefers a managed AWS-native control.
medium- A.Amazon Route 53
- B.Amazon EBS
- ✓ C.Amazon Kinesis Data Streams
- D.AWS DataSync
Why C: Amazon Kinesis Data Streams is the most appropriate service because it is a managed, AWS-native solution designed for real-time streaming data ingestion and processing. It durably stores records for up to 365 days and allows multiple independent consumers (e.g., Lambda, Kinesis Data Analytics, EC2) to read from the same stream concurrently using enhanced fan-out or shared throughput, meeting the requirement for high-volume click event processing.
JA
Written by Johnson Ajibi, MSc IT Security
Senior Network & Security Engineer · founder of Courseiva
This SAA-C03 practice question is part of Courseiva's free Amazon Web Services certification practice question bank. Courseiva provides original exam-style practice questions with explanations, topic-based practice, mock exams, readiness tracking, and study analytics to help learners prepare for the SAA-C03 exam.