How to test a retrained model in production on Vertex AI with minimal complexity?
You work for an organization that operates a streaming music service. You have a custom production model that is serving a “next song” recommendation based on a user's recent listening history. Your model is deployed on a Vertex AI endpoint. You recently retrained the same model by using fresh data. The model received positive test results offline. You now want to test the new model in production while minimizing complexity. What should you do?
Community Votes
100% of anonymous learners picked answer C. Votes are pick records left by other test-takers — they are not the verified answer.
Community Insight
The exam tests canary deployment using Vertex AI's built-in traffic splitting; the trap is choosing options that add custom routing services, extra endpoints, or offline-only evaluation when the platform feature already does the job.
Vertex AI endpoints natively support traffic splitting, letting you deploy a retrained model to the existing endpoint and canary-test it with a small slice of live traffic. The community unanimously agrees that reusing the current endpoint with built-in traffic splitting is the simplest way to validate a new model in production.
The most common wrong answer is A: creating a new endpoint and building a custom service to route 5% of traffic. It achieves a similar test but violates the 'minimizing complexity' requirement because Vertex AI already provides native traffic splitting on a single endpoint.
Community Discussion (4 comments)
Comments & Corrections
No comments yet — spotted an error or have a note? Share it below.
Expert Analysis
Why the Answer Is Correct
Option C leverages Vertex AI's built-in traffic splitting, which allows multiple model versions to share one endpoint while you route a small percentage (e.g., 5%) of production traffic to the new version. This is a classic canary deployment: the new model is validated against real user behavior, measured through end-user metrics such as listening time. Because no new endpoint, service, or pipeline must be built, it directly satisfies the requirement to minimize complexity. Traffic percentages can be adjusted at any time, enabling a gradual rollout as metrics improve.Why the Other Options Are Wrong
Option A performs the same canary test but requires a second endpoint plus a custom traffic-routing service, adding setup and maintenance overhead that the question explicitly asks you to avoid. Option B relies on batch predictions over captured requests, which cannot capture real-time engagement signals like listening time and never truly tests the model in the production serving path. Option D swaps the model outright and depends on prediction-drift alerts, which can fire due to natural variation in user behavior rather than genuine model regressions, and it offers no gradual traffic control. None of these balance in-production validation with minimal complexity as well as C.Community Comment Notes
Community consensus is unanimous (100% for C), and commenters consistently point to the native traffic-splitting feature as the deciding factor. Comment [1] emphasizes that reusing the existing endpoint reduces setup and maintenance overhead while enabling direct side-by-side comparison of models. Comment [2] frames the trade-off clearly: C is best for speed and simplicity, while a separate endpoint (A) offers more control but is generally unnecessary for this scenario. Comment [4] effectively debunks the distractors, noting that batch predictions miss real-time user behavior and that drift alerts can trigger on natural variations instead of true performance issues.Official Reference
Exam Strategy
When a question says 'minimize complexity,' favor managed, built-in platform features over custom services or extra infrastructure. Vertex AI endpoints natively support traffic splitting between model versions, so canary testing rarely requires a second endpoint. Treat phrases like 'build a service' or 'create a new endpoint' as red flags whenever a simpler native capability exists.
Related Analysis
Practice All PMLE Questions
Access 65 questions with complete answers and detailed explanations.
View Full PMLE Practice Test →