Courseiva
Data Ingestion and TransformationeasyMultiple SelectObjective-mapped

Real-Time IoT Data Ingestion with Ordering and S3 Archival Using Kinesis Data Streams and Firehose

A company is designing a data ingestion pipeline for real-time IoT sensor data. The data volume peaks at 10,000 messages per second. The pipeline must process messages in order per sensor and persist raw data to Amazon S3 for archival. Which TWO services should be used together to meet these requirements? (Choose TWO.)

Quick Answer

The answer is Amazon Kinesis Data Streams and Kinesis Data Firehose. Kinesis Data Streams guarantees message ordering within a shard, which maps naturally to per-sensor ordering when you use a sensor ID as the partition key, while Kinesis Data Firehose provides a fully managed, serverless way to batch and archive that streaming data directly to Amazon S3 without writing custom code. On the AWS Certified Data Engineer Associate DEA-C01 exam, this pairing tests your understanding of real-time IoT data ingestion with ordering and S3 archival using Kinesis Data Streams and Firehose, a classic pattern for decoupling ingestion from storage. A common trap is choosing SQS, which offers best-effort ordering but no strict per-sensor guarantee, or Lambda alone, which cannot efficiently persist high-volume raw data to S3 for archival. Memory tip: think “Streams for order, Firehose for store.”

⚠ Common exam trap

It's easy for candidates to choose AWS Lambda as a processing step without realizing it is not required for the core ingestion and archival pipeline, and they may overlook that Kinesis Data Streams is needed for ordering while Firehose handles the S3 delivery.

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 Firehose

Amazon Kinesis Data Streams (KDS) provides the ordered, real-time ingestion layer required for per-sensor message ordering, as it partitions data by a partition key (e.g., sensor ID) and guarantees order within a shard. Amazon Kinesis Data Firehose then reliably reads from the KDS stream and delivers the raw data to Amazon S3 for archival, handling buffering, compression, and automatic retries without requiring custom code.

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 Kinesis Data Firehose

    Why this is correct

    Delivers streaming data to S3.

  • Amazon Kinesis Data Streams

    Why this is correct

    Provides ordered data per shard.

  • AWS Lambda

    Why it's wrong here

    Can process but not persist to S3 efficiently.

  • Amazon AppFlow

    Why it's wrong here

    Not for real-time IoT ingestion.

  • Amazon Simple Queue Service (Amazon SQS)

    Why it's wrong here

    Does not guarantee order per sensor.

Quick reference

AWS S3 Storage Class Comparison

Storage ClassMin DurationRetrievalUse Case
S3 StandardNoneImmediateFrequently accessed data
S3 Standard-IA30 daysImmediateInfrequent access, rapid retrieval
S3 One Zone-IA30 daysImmediateNon-critical infrequent data
S3 Intelligent-TieringNoneImmediate–hoursUnknown or changing access patterns
S3 Glacier Instant90 daysMillisecondsArchive with instant retrieval
S3 Glacier Flexible90 daysMinutes–hoursArchive, flexible retrieval
S3 Glacier Deep Archive180 daysHoursLong-term compliance archive

About these practice questions

Courseiva writes every DEA-C01 question from scratch — 1,711 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 →

How Courseiva writes practice questions · Editorial policy

Same concept, more angles

2 more ways this is tested on DEA-C01

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 company is designing a data ingestion pipeline for real-time sensor data from thousands of devices. The data must be processed with low latency and stored in Amazon S3. Which TWO services would be appropriate for this use case? (Choose TWO.)

medium
  • A.AWS Glue
  • B.AWS DataSync
  • C.Amazon Athena
  • D.Amazon Kinesis Data Firehose
  • E.Amazon Kinesis Data Streams

Why D: Amazon Kinesis Data Firehose is the correct choice because it is a fully managed service designed to ingest real-time streaming data, transform it on the fly (e.g., convert to Parquet/ORC), and deliver it directly to Amazon S3 with low latency. It handles buffering, compression, and partitioning automatically, making it ideal for the described sensor data pipeline.

Variation 2. A company needs to ingest streaming data from thousands of IoT devices. The data must be processed in real-time and stored in Amazon S3. Which TWO services should be used together?

medium
  • A.Amazon Kinesis Data Streams
  • B.Amazon Kinesis Data Firehose
  • C.AWS Glue
  • D.Amazon Simple Queue Service (SQS)
  • E.AWS Direct Connect

Why A: Amazon Kinesis Data Streams is correct because it provides a scalable, real-time data ingestion service that can capture streaming data from thousands of IoT devices with low latency. Amazon Kinesis Data Firehose is correct because it can directly consume data from Kinesis Data Streams and automatically deliver it to Amazon S3 without requiring custom code for buffering, transformation, or loading.

JA

Written by Johnson Ajibi, MSc IT Security

Senior Network & Security Engineer · founder of Courseiva

This DEA-C01 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 DEA-C01 exam.