Question 18 of 499
Designing data processing systemseasyMultiple SelectObjective-mapped

Quick Answer

The answer is to increase the number of Dataflow workers and set the --maxStreamingRowsToBundle parameter to a higher value. A deadline exceeded error in a streaming Dataflow pipeline occurs when a worker cannot complete its processing within the default timeout, often because the incoming Pub/Sub stream overwhelms the available compute resources. Increasing workers distributes the load across more virtual machines, reducing per-worker pressure, while raising maxStreamingRowsToBundle allows each worker to process a larger batch of rows per bundle, improving throughput and avoiding timeouts when writing to BigQuery. On the Google Professional Data Engineer exam, this scenario tests your understanding of autoscaling and bundle sizing in streaming pipelines—a common trap is to only scale workers without adjusting bundle parameters, which can still cause micro-batching bottlenecks. Remember the mnemonic "More workers, bigger bundles" to recall that both parallelism and batch size must be tuned to resolve streaming deadline errors.

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 data pipeline uses Cloud Pub/Sub to ingest events, then a Cloud Dataflow job writes to BigQuery. The Dataflow job is failing with 'deadline exceeded' errors. Which TWO actions can resolve this? (Choose TWO.)

Question 1easymulti select
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

Increase the number of Dataflow workers.

Increasing the number of Dataflow workers (Option A) is correct because 'deadline exceeded' errors typically indicate that the pipeline is falling behind on processing due to insufficient parallelism. By adding more workers, the workload is distributed across more virtual machines, reducing the per-worker load and allowing the pipeline to keep up with the incoming Pub/Sub stream, thereby avoiding timeouts when writing to BigQuery.

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 number of Dataflow workers.

    Why this is correct

    Reduces load per worker.

    Related concept

    Read the scenario before looking for a memorised answer.

  • Switch to BigQuery Storage Write API.

    Why it's wrong here

    Addresses throughput, not timeout.

  • Decrease the batch size for writes to BigQuery.

    Why it's wrong here

    May increase overhead.

  • Set the --maxStreamingRowsToBundle parameter to a higher value.

    Why this is correct

    Increases timeout allowance.

    Related concept

    Read the scenario before looking for a memorised answer.

  • Change the windowing from fixed to global.

    Why it's wrong here

    May not address timeout.

Common exam traps

Common exam trap: answer the scenario, not the keyword

Google Cloud often tests the misconception that 'deadline exceeded' errors are always caused by slow writes to the sink, leading candidates to choose options like decreasing batch size or switching write APIs, when the real issue is insufficient parallelism in the streaming pipeline.

Detailed technical explanation

How to think about this question

Under the hood, Dataflow's autoscaling algorithm monitors CPU utilization and backlog size; 'deadline exceeded' errors often occur when the pipeline's streaming engine cannot commit output to BigQuery within the 10-minute default RPC deadline. Increasing workers triggers horizontal scaling, but note that if the bottleneck is at the BigQuery side (e.g., quota limits), adding workers may exacerbate the issue. A real-world scenario is a sudden spike in Pub/Sub traffic that outpaces the initial worker count, causing a growing backlog and eventual timeouts.

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.

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?

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: Increase the number of Dataflow workers. — Increasing the number of Dataflow workers (Option A) is correct because 'deadline exceeded' errors typically indicate that the pipeline is falling behind on processing due to insufficient parallelism. By adding more workers, the workload is distributed across more virtual machines, reducing the per-worker load and allowing the pipeline to keep up with the incoming Pub/Sub stream, thereby avoiding timeouts when writing to BigQuery.

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.