- A
Use the Vertex AI Endpoint 'traffic_split' parameter to assign 10% of traffic to v2 and 90% to v1.
Traffic splitting is the standard method for canary deployments.
- B
Deploy v2 to a separate endpoint and use a load balancer to route 10% of traffic.
Why wrong: Two endpoints with load balancer add complexity; Vertex AI supports traffic splitting natively.
- C
Create a new deployment with v2 on the same endpoint and set the 'min_replica_count' to 1 for both versions.
Why wrong: Without traffic split, both versions will receive traffic equally unless specified.
- D
Enable Vertex AI Model Monitoring on the endpoint and set up alerting for performance drop.
Why wrong: Monitoring alone does not control traffic distribution.
Quick Answer
The answer is to use the Vertex AI Endpoint `traffic_split` parameter, assigning 10% of traffic to v2 and 90% to v1. This is correct because `traffic_split` is the native, supported method for canary deployment and gradual model rollout directly on a Vertex AI Endpoint, allowing you to direct a precise percentage of inference requests to different model versions without needing external load balancers or custom routing logic. On the Google Professional Data Engineer exam, this scenario tests your understanding of Vertex AI’s built-in deployment features versus more complex alternatives; a common trap is over-engineering the solution with Kubernetes or external proxies, which adds latency and management overhead. The key insight is that Vertex AI handles traffic splitting at the endpoint level, making it the simplest and most reliable choice for controlled rollouts while monitoring skew and drift. Memory tip: think “split before you switch” — always use the endpoint’s native split to test a small slice before committing to full traffic.
PDE Operationalizing machine learning models Practice Question
This PDE practice question tests your understanding of operationalizing machine learning models. This is a configuration task: choose the command set that satisfies every stated requirement. Small differences — like 'secret' vs 'password' or 'transport input ssh' vs 'all' — change whether the answer is correct. 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 have two versions of a classification model (v1 and v2) deployed on a Vertex AI Endpoint. You want to gradually roll out v2 to 10% of traffic, monitor performance, and if metrics are better, increase traffic to 100%. You have set up model monitoring for skew and drift. Which configuration should you use?
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
Use the Vertex AI Endpoint 'traffic_split' parameter to assign 10% of traffic to v2 and 90% to v1.
The Vertex AI Endpoint 'traffic_split' parameter allows you to direct a percentage of inference requests to different model versions deployed on the same endpoint. Setting 10% to v2 and 90% to v1 enables a gradual rollout while monitoring skew and drift, and you can adjust the split as needed. This is the native, supported method for canary deployments in Vertex AI, avoiding the complexity and latency of external load balancers.
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 the Vertex AI Endpoint 'traffic_split' parameter to assign 10% of traffic to v2 and 90% to v1.
Why this is correct
Traffic splitting is the standard method for canary deployments.
Related concept
Read the scenario before looking for a memorised answer.
- ✗
Deploy v2 to a separate endpoint and use a load balancer to route 10% of traffic.
Why it's wrong here
Two endpoints with load balancer add complexity; Vertex AI supports traffic splitting natively.
- ✗
Create a new deployment with v2 on the same endpoint and set the 'min_replica_count' to 1 for both versions.
Why it's wrong here
Without traffic split, both versions will receive traffic equally unless specified.
- ✗
Enable Vertex AI Model Monitoring on the endpoint and set up alerting for performance drop.
Why it's wrong here
Monitoring alone does not control traffic distribution.
Common exam traps
Common exam trap: answer the scenario, not the keyword
The trap here is that candidates confuse infrastructure-level load balancing (Option B) with Vertex AI's built-in traffic splitting, or think that replica counts (Option C) control traffic distribution, when in fact traffic_split is the only parameter that directly controls request routing percentages.
Detailed technical explanation
How to think about this question
Under the hood, Vertex AI Endpoints use a weighted random selection based on the traffic_split values to route each prediction request to a specific model version. The split is applied per-request, not per-session, so each request independently has a 10% chance of hitting v2. This allows for fine-grained canary testing without cold-start issues, as both models remain loaded and ready. In a real-world scenario, you might start with 1% traffic to v2, monitor for a few hours, then increase to 10%, 50%, and finally 100% if metrics are satisfactory.
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.
- →
Operationalizing machine learning models — study guide chapter
Learn the concepts, then practise the questions
- →
Operationalizing machine learning models 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?
Operationalizing machine learning models — This question tests Operationalizing machine learning models — Read the scenario before looking for a memorised answer..
What is the correct answer to this question?
The correct answer is: Use the Vertex AI Endpoint 'traffic_split' parameter to assign 10% of traffic to v2 and 90% to v1. — The Vertex AI Endpoint 'traffic_split' parameter allows you to direct a percentage of inference requests to different model versions deployed on the same endpoint. Setting 10% to v2 and 90% to v1 enables a gradual rollout while monitoring skew and drift, and you can adjust the split as needed. This is the native, supported method for canary deployments in Vertex AI, avoiding the complexity and latency of external load balancers.
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 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.