- A
The Bigtable table uses a single column family with over 100 columns, leading to high read overhead
Wide column families cause inefficient reads in Bigtable.
- B
The Dataflow pipeline uses a large batch size for Bigtable reads, overwhelming the instance
Why wrong: Default batch sizes are reasonable; timeouts indicate read issues.
- C
The Bigtable cluster has too few nodes for the read throughput
Why wrong: 3 nodes can handle significant throughput if row key is well-designed.
- D
The Dataflow pipeline does not cache Bigtable results, causing repeated lookups
Why wrong: Caching is not necessary; the problem is likely at the Bigtable level.
Quick Answer
The answer is a single column family with over 100 columns, which forces Bigtable to read all column qualifiers for every row, dramatically increasing read overhead and causing operation timeout errors. This happens because Bigtable stores all columns within a family together; when a Dataflow pipeline requests a row without specifying qualifiers, the system must scan every column, overwhelming the 3-node cluster even with highly distributed data. On the Google Professional Data Engineer exam, this tests your understanding of Bigtable schema design and its impact on latency—a common trap is blaming node count or data skew, when the real culprit is column family bloat. Remember the memory tip: “One family, many columns? Expect timeouts and sorrows.”
PDE Designing data processing systems Practice Question
This PDE practice question tests your understanding of designing data processing systems. The scenario asks you to isolate a root cause — eliminate options that address a different problem before choosing. 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 media company uses Cloud Dataflow to process video metadata from a Pub/Sub stream. The pipeline enriches metadata using a lookup table stored in Cloud Bigtable. Recently, they noticed increased latency and occasional 'Bigtable operation timeout' errors. The Bigtable instance has 3 nodes and the data is highly distributed. The Dataflow pipeline uses default settings. What is the most likely cause of the timeouts?
Clue words in this question
Noticing these words before you look at the options changes how you read each choice.
Clue:
"most likely"Why it matters: Probability qualifier — the question wants the most probable cause or outcome, not a guaranteed one. Eliminate low-probability options.
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
The Bigtable table uses a single column family with over 100 columns, leading to high read overhead
A single column family with over 100 columns in Bigtable forces the system to read all column qualifiers for each row, even if only a few are needed. This increases read overhead and latency, and can trigger 'operation timeout' errors when the Dataflow pipeline's default settings (which do not limit column qualifiers) request the entire row. The highly distributed data and 3-node cluster exacerbate the issue, but the root cause is the excessive column count within one family.
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.
- ✓
The Bigtable table uses a single column family with over 100 columns, leading to high read overhead
Why this is correct
Wide column families cause inefficient reads in Bigtable.
Clue confirmation
The clue word "most likely" in the question point toward this answer.
Related concept
Read the scenario before looking for a memorised answer.
- ✗
The Dataflow pipeline uses a large batch size for Bigtable reads, overwhelming the instance
Why it's wrong here
Default batch sizes are reasonable; timeouts indicate read issues.
- ✗
The Bigtable cluster has too few nodes for the read throughput
Why it's wrong here
3 nodes can handle significant throughput if row key is well-designed.
- ✗
The Dataflow pipeline does not cache Bigtable results, causing repeated lookups
Why it's wrong here
Caching is not necessary; the problem is likely at the Bigtable level.
Common exam traps
Common exam trap: answer the scenario, not the keyword
Google Cloud often tests the misconception that Bigtable timeouts are always due to insufficient nodes or throughput, when in fact the root cause can be inefficient schema design like a single column family with too many columns.
Detailed technical explanation
How to think about this question
Bigtable stores data in sorted key-value pairs within column families; when a column family has many columns, each read request must scan all column qualifiers in that family for the requested row range, increasing I/O and CPU on the tablet server. The Dataflow Bigtable connector uses the Cloud Bigtable client library, which by default reads the entire row (all column families and columns) unless a column qualifier filter is explicitly set. In real-world scenarios, this often causes timeouts when enrichment pipelines inadvertently request full rows from tables with hundreds of columns, even with modest node counts.
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 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. Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option. 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.
Identify which exam domain this question belongs to, review the core concept, then practise similar questions from the same domain.
- →
Designing data processing systems — study guide chapter
Learn the concepts, then practise the questions
- →
Designing data processing systems practice questions
Targeted practice on this topic area only
- →
All PDE questions
499 questions across all exam domains
- →
Google Professional Data Engineer study guide
Full concept coverage aligned to exam objectives
- →
PDE practice test guide
How to use practice tests most effectively before exam day
Related practice questions
Related PDE practice-question pages
Use these pages to review the topic behind this question. This is how one missed question becomes focused revision.
Designing data processing systems practice questions
Practise PDE questions linked to Designing data processing systems.
Building and operationalizing data processing systems practice questions
Practise PDE questions linked to Building and operationalizing data processing systems.
Operationalizing machine learning models practice questions
Practise PDE questions linked to Operationalizing machine learning models.
Ensuring solution quality practice questions
Practise PDE questions linked to Ensuring solution quality.
PDE fundamentals practice questions
Practise PDE questions linked to PDE fundamentals.
PDE scenario practice questions
Practise PDE questions linked to PDE scenario.
PDE troubleshooting practice questions
Practise PDE questions linked to PDE troubleshooting.
Practice this exam
Start a free PDE 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 PDE question test?
Designing data processing systems — This question tests Designing data processing systems — Read the scenario before looking for a memorised answer..
What is the correct answer to this question?
The correct answer is: The Bigtable table uses a single column family with over 100 columns, leading to high read overhead — A single column family with over 100 columns in Bigtable forces the system to read all column qualifiers for each row, even if only a few are needed. This increases read overhead and latency, and can trigger 'operation timeout' errors when the Dataflow pipeline's default settings (which do not limit column qualifiers) request the entire row. The highly distributed data and 3-node cluster exacerbate the issue, but the root cause is the excessive column count within one family.
What should I do if I get this PDE 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: "most likely". Probability qualifier — the question wants the most probable cause or outcome, not a guaranteed one. Eliminate low-probability options.
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 →
Last reviewed: Jun 30, 2026
This PDE practice question is part of Courseiva's free Google Cloud 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 PDE 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.