- A
Increase the buffer size to 10 MB to allow more records per delivery.
Why wrong: Larger buffer size increases latency as more data accumulates before delivery.
- B
Decrease the buffer interval to 15 seconds.
Shorter buffer interval triggers more frequent deliveries, reducing latency.
- C
Enable compression (GZIP) on the delivery stream.
Why wrong: Compression reduces file size but does not affect delivery frequency.
- D
Enable data transformation with AWS Lambda to convert JSON to Parquet.
Why wrong: Transformation adds processing time, potentially increasing latency.
Quick Answer
The answer is to decrease the buffer interval to 15 seconds. This is the most effective action because Kinesis Data Firehose delivery latency is governed by two buffer triggers: a size threshold (5 MB) and an interval threshold (60 seconds). With small 2 KB records, the stream rarely hits the 5 MB size limit during peak hours, so delivery relies entirely on the 60-second interval, which can compound into the observed 5-minute delay due to queuing. On the AWS Certified Data Engineer Associate DEA-C01 exam, this scenario tests your understanding of how buffer hints directly control latency for small-record streams—a common trap is mistakenly increasing the buffer size or switching to a different service. The key insight is that for tiny records, the interval is the bottleneck, not the size. Memory tip: think "small records, shrink the clock"—when records are tiny, reduce the buffer interval to cut latency.
DEA-C01 Data Ingestion and Transformation Practice Question
This DEA-C01 practice question tests your understanding of data ingestion and transformation. This is a configuration task: choose the command set that satisfies every stated requirement. Small differences — like 'secret' vs 'password' or 'transport input ssh' vs 'all' — change whether the answer is correct. After answering, compare your reasoning against the explanation and wrong-answer breakdown below. Once you have made your selection, read the full explanation to reinforce the concept and understand why each distractor is designed to mislead on exam day.
A company uses Amazon Kinesis Data Firehose to ingest log data from web servers into Amazon S3. The data is in JSON format and each record is approximately 2 KB. The delivery stream is configured to buffer incoming records for 60 seconds or 5 MB, whichever comes first. The company notices that the data in S3 is delayed by up to 5 minutes during peak hours. Which action would most effectively reduce the delivery latency?
Clue words in this question
Noticing these words before you look at the options changes how you read each choice.
Clue:
"first"Why it matters: Order matters here. You are being tested on which action comes before the others — not which action is generally useful.
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
Decrease the buffer interval to 15 seconds.
The observed delay of up to 5 minutes during peak hours indicates that the buffer size threshold (5 MB) is rarely reached because each record is only ~2 KB, so the delivery stream relies on the buffer interval (60 seconds) to trigger delivery. By decreasing the buffer interval to 15 seconds, Kinesis Data Firehose will push data to S3 more frequently, directly reducing the maximum latency from 60 seconds to 15 seconds per batch, which eliminates the compounding delays caused by queuing during high-throughput periods.
Key principle: Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option.
Answer analysis
Option-by-option breakdown
For each option: why learners choose it and why it is or isn't the right answer here.
- ✗
Increase the buffer size to 10 MB to allow more records per delivery.
Why it's wrong here
Larger buffer size increases latency as more data accumulates before delivery.
- ✓
Decrease the buffer interval to 15 seconds.
Why this is correct
Shorter buffer interval triggers more frequent deliveries, reducing latency.
Clue confirmation
The clue word "first" in the question point toward this answer.
Related concept
Read the scenario before looking for a memorised answer.
- ✗
Enable compression (GZIP) on the delivery stream.
Why it's wrong here
Compression reduces file size but does not affect delivery frequency.
- ✗
Enable data transformation with AWS Lambda to convert JSON to Parquet.
Why it's wrong here
Transformation adds processing time, potentially increasing latency.
Common exam traps
Common exam trap: answer the scenario, not the keyword
The trap here is that candidates assume increasing buffer size or enabling compression will speed up delivery, but they fail to recognize that with small records, the buffer interval is the bottleneck, and only reducing that interval directly lowers latency.
Detailed technical explanation
How to think about this question
Kinesis Data Firehose uses a per-shard buffer that flushes based on the first of either the buffer size or buffer interval; with small records (~2 KB), the buffer interval is the dominant trigger. Under the hood, Firehose batches records into a single S3 object per flush, and during peak hours, multiple shards can queue up if the interval is too long, causing a cascading delay as each flush waits for the previous S3 PUT to complete. In real-world scenarios, tuning the buffer interval to 15–60 seconds is a common optimization for low-latency streaming pipelines, while buffer size adjustments are only effective when records are large enough to hit the size threshold frequently.
KKey Concepts to Remember
- Read the scenario before looking for a memorised answer.
- Find the constraint that changes the correct option.
- Eliminate answers that are true in general but not in this case.
TExam Day Tips
- Watch for words such as best, first, most likely and least administrative effort.
- Review why wrong options are wrong, not only why the correct option is correct.
Key takeaway
Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option.
Real-world example
How this comes up in practice
A media company stores terabytes of video archives that are accessed once a year for audit purposes. Moving these objects to a cold storage tier (Azure Archive, S3 Glacier, or Google Nearline) costs a fraction of hot storage. Questions like this test whether you understand storage tiers, access frequency tradeoffs, and retrieval latency requirements.
What to study next
Got this wrong? Here's your next step.
Identify which exam domain this question belongs to, review the core concept, then practise similar questions from the same domain.
- →
Data Ingestion and Transformation — study guide chapter
Learn the concepts, then practise the questions
- →
Data Ingestion and Transformation practice questions
Targeted practice on this topic area only
- →
All DEA-C01 questions
1,786 questions across all exam domains
- →
AWS Certified Data Engineer Associate DEA-C01 study guide
Full concept coverage aligned to exam objectives
- →
DEA-C01 practice test guide
How to use practice tests most effectively before exam day
Related practice questions
Related DEA-C01 practice-question pages
Use these pages to review the topic behind this question. This is how one missed question becomes focused revision.
Data Ingestion and Transformation practice questions
Practise DEA-C01 questions linked to Data Ingestion and Transformation.
Data Operations and Support practice questions
Practise DEA-C01 questions linked to Data Operations and Support.
Data Security and Governance practice questions
Practise DEA-C01 questions linked to Data Security and Governance.
Data Store Management practice questions
Practise DEA-C01 questions linked to Data Store Management.
DEA-C01 fundamentals practice questions
Practise DEA-C01 questions linked to DEA-C01 fundamentals.
DEA-C01 scenario practice questions
Practise DEA-C01 questions linked to DEA-C01 scenario.
DEA-C01 troubleshooting practice questions
Practise DEA-C01 questions linked to DEA-C01 troubleshooting.
Practice this exam
Start a free DEA-C01 practice session
Short sessions build daily habit. Longer sessions build exam-day stamina. Try a timed session to simulate real conditions.
FAQ
Questions learners often ask
What does this DEA-C01 question test?
Data Ingestion and Transformation — This question tests Data Ingestion and Transformation — Read the scenario before looking for a memorised answer..
What is the correct answer to this question?
The correct answer is: Decrease the buffer interval to 15 seconds. — The observed delay of up to 5 minutes during peak hours indicates that the buffer size threshold (5 MB) is rarely reached because each record is only ~2 KB, so the delivery stream relies on the buffer interval (60 seconds) to trigger delivery. By decreasing the buffer interval to 15 seconds, Kinesis Data Firehose will push data to S3 more frequently, directly reducing the maximum latency from 60 seconds to 15 seconds per batch, which eliminates the compounding delays caused by queuing during high-throughput periods.
What should I do if I get this DEA-C01 question wrong?
Identify which exam domain this question belongs to, review the core concept, then practise similar questions from the same domain.
Are there clue words in this question I should notice?
Yes — watch for: "first". Order matters here. You are being tested on which action comes before the others — not which action is generally useful.
What is the key concept behind this question?
Read the scenario before looking for a memorised answer.
About these practice questions
Courseiva creates original exam-style practice questions with explanations and wrong-answer analysis. It does not publish real exam questions, exam dumps, or protected exam content. Learn why practice questions differ from exam dumps →
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 uses Amazon Kinesis Data Firehose to deliver data to an Amazon S3 bucket. The data delivery is delayed by up to 5 minutes. The engineer wants to reduce the delay to under 1 minute. Which parameter should be adjusted?
easy- A.Enable error logging to CloudWatch.
- B.Increase the buffer size in Kinesis Data Firehose.
- C.Enable data compression.
- ✓ D.Decrease the buffer interval in Kinesis Data Firehose.
Why D: Option B is correct because lowering the buffer interval reduces the time Firehose waits before delivering a batch, thus reducing latency. Option A is wrong because increasing buffer size would increase delay. Option C is wrong because compression has no effect on delivery timing. Option D is wrong because error handling does not affect delivery delay.
Variation 2. A company is using Amazon Kinesis Data Firehose to deliver data to an Amazon S3 bucket. The data is delivered in 5-minute intervals. The company wants to reduce the delivery frequency to 1 minute to get data faster. Which parameter should be changed in the Firehose delivery stream configuration?
easy- ✓ A.Reduce the buffer interval from 300 seconds to 60 seconds.
- B.Increase the buffer size to trigger delivery sooner.
- C.Enable dynamic partitioning to deliver data more frequently.
- D.Enable compression to reduce data size and speed up delivery.
Why A: Option A is correct because the buffer interval determines how often data is delivered to the destination. Changing it from 300 seconds to 60 seconds will deliver data every minute. Option B (buffer size) affects delivery based on data volume, not time. Option C (compression) does not affect frequency. Option D (partitioning) does not affect delivery frequency.
Keep practising
More DEA-C01 practice questions
- A data pipeline uses Kinesis Data Firehose to deliver streaming data to an S3 bucket. The data volume spikes occasionall…
- An e-commerce company uses AWS Glue to run ETL jobs that transform clickstream data from Amazon S3. The job reads Parque…
- A data engineering team uses Amazon Kinesis Data Analytics for Apache Flink to process streaming data. They notice that…
- A company uses AWS Glue to process streaming data from Amazon Kinesis Data Streams. The job reads JSON records and write…
- A data engineer is designing a serverless data ingestion pipeline that uses Amazon Kinesis Data Firehose to deliver data…
- A company runs a nightly AWS Glue ETL job that reads from a JDBC source (PostgreSQL) and writes to S3 in Parquet format.…
Last reviewed: Jun 11, 2026
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.
Question Discussion
Share a tip, memory trick, or ask about the reasoning behind this question. Do not post real exam questions, leaked content, braindumps, or copyrighted exam material. Comments are moderated and may be removed without notice.
Sign in to join the discussion.