Question 223 of 499
Operationalizing machine learning modelshardMultiple ChoiceObjective-mapped

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?

Question 1hardmultiple 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

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.

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?

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 →

How Courseiva writes practice questions · Editorial policy

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