- A
Use Cloud NAT to provide a static IP for Data Fusion to whitelist.
Why wrong: IP whitelisting helps with security, not timeouts.
- B
Configure the Cloud SQL connector in Data Fusion to use retry logic and increase the connection timeout.
Retries and longer timeouts handle transient failures.
- C
Increase the number of Data Fusion nodes to distribute the load.
Why wrong: More nodes can increase connection attempts, exacerbating timeouts.
- D
Migrate Cloud SQL to Cloud Spanner to handle higher concurrency.
Why wrong: Overly complex and costly for a relational source.
Quick Answer
The answer is to configure the Cloud SQL connector in Cloud Data Fusion with retry logic and an increased connection timeout. This is correct because the intermittent 'connection timeout' error typically stems from transient network latency or brief resource contention in Cloud SQL, not a fundamental connectivity failure. By tuning the connector’s timeout threshold and enabling automatic retries, the pipeline can gracefully recover from these short-lived hiccups without requiring architectural overhauls like moving to a different database or redesigning the ETL flow. On the Google Professional Data Engineer exam, this scenario tests your understanding of operational resilience within managed services—specifically, how Cloud Data Fusion’s connectors expose configuration knobs for handling transient faults. A common trap is to assume the error demands a permanent fix like scaling Cloud SQL or switching to a private IP, but the exam emphasizes cost-effective, configuration-based solutions first. Memory tip: think “Retry and Relax”—retry logic handles the hiccup, and a relaxed timeout gives the connection room to breathe.
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 engineering team uses Cloud Data Fusion to build ETL pipelines. They have a pipeline that reads from Cloud SQL, transforms data using Wrangler, and writes to BigQuery. The pipeline fails intermittently with a 'connection timeout' error from Cloud SQL. What is the best way to handle this?
Clue words in this question
Noticing these words before you look at the options changes how you read each choice.
Clue:
"best"Why it matters: Signals that multiple options may be partially correct. Choose the option that most directly solves the exact problem described, not the one that sounds most complete.
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
Configure the Cloud SQL connector in Data Fusion to use retry logic and increase the connection timeout.
Option B is correct because Cloud Data Fusion's Cloud SQL connector can be configured with retry logic and an increased connection timeout to handle transient network issues. This directly addresses the intermittent 'connection timeout' error without requiring architectural changes, as the error is likely due to brief network latency or resource contention, not a persistent connectivity problem.
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.
- ✗
Use Cloud NAT to provide a static IP for Data Fusion to whitelist.
Why it's wrong here
IP whitelisting helps with security, not timeouts.
- ✓
Configure the Cloud SQL connector in Data Fusion to use retry logic and increase the connection timeout.
Why this is correct
Retries and longer timeouts handle transient failures.
Clue confirmation
The clue word "best" in the question point toward this answer.
Related concept
Read the scenario before looking for a memorised answer.
- ✗
Increase the number of Data Fusion nodes to distribute the load.
Why it's wrong here
More nodes can increase connection attempts, exacerbating timeouts.
- ✗
Migrate Cloud SQL to Cloud Spanner to handle higher concurrency.
Why it's wrong here
Overly complex and costly for a relational source.
Common exam traps
Common exam trap: answer the scenario, not the keyword
The trap here is that candidates often assume connectivity issues require network-level fixes (like static IPs or NAT) or scaling, rather than recognizing that transient timeouts are best handled by application-level retry and timeout configuration.
Detailed technical explanation
How to think about this question
Under the hood, Cloud Data Fusion uses JDBC connections to Cloud SQL, which have default timeout values (e.g., 30 seconds). Intermittent timeouts can occur due to Cloud SQL's connection pooling limits or brief network blips. Configuring retry logic (e.g., with exponential backoff) and increasing the timeout (e.g., to 60 seconds) allows the connector to recover from transient failures without pipeline failure. In real-world scenarios, this is a common pattern when reading from relational databases in ETL pipelines, as network jitter or database maintenance windows can cause short-lived 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 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.
- →
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: Configure the Cloud SQL connector in Data Fusion to use retry logic and increase the connection timeout. — Option B is correct because Cloud Data Fusion's Cloud SQL connector can be configured with retry logic and an increased connection timeout to handle transient network issues. This directly addresses the intermittent 'connection timeout' error without requiring architectural changes, as the error is likely due to brief network latency or resource contention, not a persistent connectivity problem.
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: "best". Signals that multiple options may be partially correct. Choose the option that most directly solves the exact problem described, not the one that sounds most complete.
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 24, 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.