Question 163 of 499

Quick Answer

The answer is to enable Dataflow Shuffle. High system latency with low CPU utilization in a streaming pipeline signals that the bottleneck is not processing power but rather the shuffle operation, where data is redistributed across workers. When shuffle data spills to disk due to insufficient memory or network contention, it creates I/O waits that stall throughput without taxing the CPU. On the Google Professional Data Engineer exam, this scenario tests your ability to distinguish between compute-bound and shuffle-bound performance issues—a common trap is to scale workers or increase machine type, which would not help here because the CPU is already underutilized. Instead, Dataflow Shuffle offloads the shuffle to Google-managed resources, eliminating disk-based bottlenecks and reducing latency. Remember the mnemonic: “Low CPU, high lag? Shuffle’s the drag.”

PDE Practice Question: Building and operationalizing data processing systems

This PDE practice question tests your understanding of building and operationalizing data processing systems. Read the scenario carefully and evaluate each option against the stated constraints before committing to an answer. 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 Dataflow pipeline is processing a high-volume streaming data stream. The job is lagging behind by 30 minutes, and the Dataflow monitoring UI shows high system latency with low CPU utilization. Which action should be taken to improve throughput?

Question 1mediummultiple choice
Full question →

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

Enable Dataflow Shuffle

Option C is correct because high system latency with low CPU utilization indicates a bottleneck in data shuffling, not in processing capacity. Enabling Dataflow Shuffle offloads the shuffle operation to Google-managed resources, reducing disk I/O and network overhead, which directly improves throughput in streaming pipelines.

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.

  • Enable Streaming Engine

    Why it's wrong here

    Streaming Engine is for improving streaming data handling, but the issue is shuffle, not streaming throughput.

  • Increase the number of workers

    Why it's wrong here

    Increasing workers may help if the job is CPU-bound, but here CPU is low, suggesting a shuffle bottleneck.

  • Enable Dataflow Shuffle

    Why this is correct

    Dataflow Shuffle offloads shuffle operations to a managed service, reducing worker overhead and improving throughput when shuffle is the bottleneck.

    Related concept

    Read the scenario before looking for a memorised answer.

  • Disable hot key detection

    Why it's wrong here

    Disabling hot key detection may allow unbalanced data distribution, worsening performance.

Common exam traps

Common exam trap: answer the scenario, not the keyword

Google Cloud often tests the misconception that low CPU utilization always means more workers are needed, but the trap here is that shuffle bottlenecks cause high latency without saturating CPU, so the correct fix is to offload shuffle operations rather than scale workers.

Detailed technical explanation

How to think about this question

Dataflow Shuffle uses a managed shuffle service that separates the shuffle operation from worker VMs, leveraging Google's internal infrastructure for efficient data exchange. This is particularly beneficial in streaming pipelines where data is continuously shuffled between stages; without it, workers perform shuffle on local disks, causing I/O contention and high latency even when CPU is underutilized. In practice, enabling Dataflow Shuffle can reduce shuffle-related latency by up to 50% in high-volume streams.

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 healthcare organisation deploys an application with a public-facing web tier and a private database tier. The database subnet has no public IP and only accepts connections from the web tier's security group. Questions like this test whether you can design cloud network isolation using VNets/VPCs, subnets, and security group rules.

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.

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.

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?

Building and operationalizing data processing systems — This question tests Building and operationalizing data processing systems — Read the scenario before looking for a memorised answer..

What is the correct answer to this question?

The correct answer is: Enable Dataflow Shuffle — Option C is correct because high system latency with low CPU utilization indicates a bottleneck in data shuffling, not in processing capacity. Enabling Dataflow Shuffle offloads the shuffle operation to Google-managed resources, reducing disk I/O and network overhead, which directly improves throughput in streaming pipelines.

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.

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 →

How Courseiva writes practice questions · Editorial policy

Keep practising

More PDE practice questions

Last reviewed: Jun 30, 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 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.