- A
Switch to streaming pipeline with .watchForNewFiles() and process files as they arrive
This reduces latency by triggering processing immediately.
- B
Batch the hourly data into a single larger hourly run
Why wrong: Batching increases latency.
- C
Use a larger machine type for the Dataflow workers
Why wrong: Faster processing but still waits for file availability.'
- D
Increase the number of workers and use smaller input files
Why wrong: Smaller files increase overhead.
Quick Answer
The correct change is to switch to a streaming pipeline using `.watchForNewFiles()` to process files as they arrive, because the 15-minute latency is caused by the hourly batch schedule and file availability delay, not the 10-minute Dataflow processing time. By adopting a streaming approach with `FileIO.match().continuously()`, Dataflow can detect and process new Parquet files in Cloud Storage immediately, reducing overall latency to near the processing time. On the Google Professional Data Engineer exam, this scenario tests your understanding that batch scheduling introduces fixed wait times, while streaming eliminates them—a common trap is focusing on optimizing the transform step when the real bottleneck is the trigger. Remember the key insight: latency is often about *when* processing starts, not *how fast* it runs. Memory tip: think “watch for files, don’t wait for hours.”
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.
You are implementing a data pipeline that reads from Cloud Storage (parquet files), transforms data with Cloud Dataflow, and writes to BigQuery. The pipeline runs on a batch schedule every hour. You notice that the Dataflow job takes 10 minutes, but the overall pipeline latency is 15 minutes due to file availability and scheduling. The business requires latency under 5 minutes. Which change should you make?
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
Switch to streaming pipeline with .watchForNewFiles() and process files as they arrive
The root cause of the latency is file availability and scheduling delay, not the processing time. Switching to a streaming pipeline with `.watchForNewFiles()` (or the equivalent `FileIO.match().continuously()`) allows Dataflow to process files as soon as they arrive in Cloud Storage, eliminating the batch scheduling wait and reducing overall latency to near the processing time.
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.
- ✓
Switch to streaming pipeline with .watchForNewFiles() and process files as they arrive
Why this is correct
This reduces latency by triggering processing immediately.
Related concept
Read the scenario before looking for a memorised answer.
- ✗
Batch the hourly data into a single larger hourly run
Why it's wrong here
Batching increases latency.
- ✗
Use a larger machine type for the Dataflow workers
Why it's wrong here
Faster processing but still waits for file availability.'
- ✗
Increase the number of workers and use smaller input files
Why it's wrong here
Smaller files increase overhead.
Common exam traps
Common exam trap: answer the scenario, not the keyword
Google Cloud often tests the distinction between reducing processing time (compute optimization) and reducing scheduling/availability latency (pipeline architecture change), leading candidates to mistakenly choose worker scaling or batching options.
Detailed technical explanation
How to think about this question
Under the hood, `.watchForNewFiles()` uses a periodic polling mechanism (default every 10 seconds) to detect new files in Cloud Storage and triggers pipeline processing immediately, bypassing the fixed hourly schedule. In real-world scenarios, this approach is critical for near-real-time ingestion where data arrives irregularly, but it requires careful handling of late-arriving data and watermarking to avoid duplicate processing.
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.
- →
Building and operationalizing data processing systems — study guide chapter
Learn the concepts, then practise the questions
- →
Building and operationalizing 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?
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: Switch to streaming pipeline with .watchForNewFiles() and process files as they arrive — The root cause of the latency is file availability and scheduling delay, not the processing time. Switching to a streaming pipeline with `.watchForNewFiles()` (or the equivalent `FileIO.match().continuously()`) allows Dataflow to process files as soon as they arrive in Cloud Storage, eliminating the batch scheduling wait and reducing overall latency to near the processing time.
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 →
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.