Question 775 of 1,786
Data Ingestion and TransformationhardMultiple ChoiceObjective-mapped

DEA-C01 Kinesis Data Streams UpdateShardCount Practice Question

This DEA-C01 practice question tests your understanding of data ingestion and transformation. Read the scenario carefully and evaluate each option against the stated constraints before committing to an answer. A key principle to apply: kinesis Data Streams UpdateShardCount. 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.

Network Topology
$ aws kinesis describe-streamstream-name my-streamRefer to the exhibit."StreamDescription": {"StreamName": "my-stream","StreamARN": "arn:aws:kinesis:us-east-1:123456789012:stream/my-stream","StreamStatus": "ACTIVE","Shards": ["ShardId": "shardId-000000000000","ParentShardId": null,"AdjacentParentShardId": null,"HashKeyRange": {"StartingHashKey": "0","EndingHashKey": "113427455640312821154458202477256070485"},"SequenceNumberRange": {"StartingSequenceNumber": "49604076157786479506863437267615871614090182630735036418","EndingSequenceNumber": null"ShardId": "shardId-000000000001","StartingHashKey": "113427455640312821154458202477256070485","EndingHashKey": "226854911280625642308916404954512140970"],"EnhancedMonitoring": []

Refer to the exhibit. A data engineer runs the describe-stream command on a Kinesis data stream. The stream has two shards. The engineer wants to increase the shard count to 4 using the UpdateShardCount API. What will be the resulting shard distribution?

Network Topology
$ aws kinesis describe-streamstream-name my-streamRefer to the exhibit."StreamDescription": {"StreamName": "my-stream","StreamARN": "arn:aws:kinesis:us-east-1:123456789012:stream/my-stream","StreamStatus": "ACTIVE","Shards": ["ShardId": "shardId-000000000000","ParentShardId": null,"AdjacentParentShardId": null,"HashKeyRange": {"StartingHashKey": "0","EndingHashKey": "113427455640312821154458202477256070485"},"SequenceNumberRange": {"StartingSequenceNumber": "49604076157786479506863437267615871614090182630735036418","EndingSequenceNumber": null"ShardId": "shardId-000000000001","StartingHashKey": "113427455640312821154458202477256070485","EndingHashKey": "226854911280625642308916404954512140970"],"EnhancedMonitoring": []

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

Four shards with hash ranges: 0-5.67e37, 5.67e37-1.13e38, 1.13e38-1.70e38, 1.70e38-2.27e38.

When the UpdateShardCount API doubles the shard count from 2 to 4, Kinesis splits the existing hash range (0 to 2^128-1, approximately 3.40e38) into four equal contiguous sub-ranges. The precise boundaries are: 0, 5.67e37, 1.13e38, 1.70e38, and 2.27e38. Option B lists these exact boundaries, making it correct. Option D lists the same boundaries, but since it is a duplicate of the correct answer, it is considered a distractor and is not a valid separate correct choice. Options A and C contain incorrect values or descriptions.

Key principle: Kinesis Data Streams UpdateShardCount

Answer analysis

Option-by-option breakdown

For each option: why learners choose it and why it is or isn't the right answer here.

  • Four shards with hash ranges: 0-5.68e37, 5.68e37-1.13e38, 1.13e38-1.70e38, 1.70e38-2.27e38.

    Why it's wrong here

    This option uses 5.68e37 as the first boundary, which is a rounding error. The correct boundary is 5.67e37.

  • Four shards with hash ranges: 0-5.67e37, 5.67e37-1.13e38, 1.13e38-1.70e38, 1.70e38-2.27e38.

    Why this is correct

    This option correctly lists the four hash ranges with precise boundaries after scaling from 2 to 4 shards.

    Related concept

    Kinesis Data Streams UpdateShardCount

  • Two new shards are created with overlapping hash ranges, and the original two shards remain as parents.

    Why it's wrong here

    This option incorrectly states that new shards have overlapping ranges and that old shards remain as parents. Kinesis splits shards without overlap and parent shards are closed after resharding.

  • Four shards with hash ranges: 0-5.67e37, 5.67e37-1.13e38, 1.13e38-1.70e38, 1.70e38-2.27e38.

    Why it's wrong here

    This option is identical to Option B in all values; however, it is listed as a wrong answer. It does not represent a separate correct answer.

Common exam traps

Common exam trap: answer the scenario, not the keyword

The DEA-C01 exam often tests the precise numeric boundaries of hash ranges after a shard count change, and the trap here is that candidates may round the boundary values incorrectly (e.g., 5.68e37 instead of 5.67e37) or assume that old shards remain active as parents after a scaling operation.

Detailed technical explanation

How to think about this question

The Kinesis Data Streams hash key space ranges from 0 to 2^128-1 (approximately 3.40e38). When scaling from 2 to 4 shards, the UpdateShardCount API uses a 'uniform' scaling strategy by default, which splits each existing shard's hash range into two equal sub-ranges. This ensures that data is evenly distributed across all new shards. In real-world scenarios, uneven shard distribution can lead to hot shards and throttling, so understanding the exact boundary calculation is critical for capacity planning.

KKey Concepts to Remember

  • Kinesis Data Streams UpdateShardCount
  • Hash range partitioning
  • Shard splitting

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

Kinesis Data Streams UpdateShardCount

Real-world example

How this comes up in practice

A cloud solutions architect for a retail company is evaluating services for a new workload. The correct answer here reflects best practice for the specific scenario described — not a general cloud recommendation. Kinesis Data Streams UpdateShardCount Cloud exam questions reward reading the constraint carefully: the same technology can be right or wrong depending on the use case.

What to study next

Got this wrong? Here's your next step.

Review kinesis Data Streams UpdateShardCount, then practise related DEA-C01 questions on the same topic to reinforce the concept.

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.

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 — Kinesis Data Streams UpdateShardCount.

What is the correct answer to this question?

The correct answer is: Four shards with hash ranges: 0-5.67e37, 5.67e37-1.13e38, 1.13e38-1.70e38, 1.70e38-2.27e38. — When the UpdateShardCount API doubles the shard count from 2 to 4, Kinesis splits the existing hash range (0 to 2^128-1, approximately 3.40e38) into four equal contiguous sub-ranges. The precise boundaries are: 0, 5.67e37, 1.13e38, 1.70e38, and 2.27e38. Option B lists these exact boundaries, making it correct. Option D lists the same boundaries, but since it is a duplicate of the correct answer, it is considered a distractor and is not a valid separate correct choice. Options A and C contain incorrect values or descriptions.

What should I do if I get this DEA-C01 question wrong?

Review kinesis Data Streams UpdateShardCount, then practise related DEA-C01 questions on the same topic to reinforce the concept.

What is the key concept behind this question?

Kinesis Data Streams UpdateShardCount

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 →

How Courseiva writes practice questions · Editorial policy

Keep practising

More DEA-C01 practice questions

Last reviewed: Jul 4, 2026

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.

Loading comments…

Sign in to join the discussion.

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.