- A
Request a quota increase from Google Cloud Support.
Why wrong: This is a valid long-term fix but not minimal; it requires intervention.
- B
Change the pipeline to run in a different region with available quota.
Why wrong: This may require data movement and is not minimal change.
- C
Reduce the number of parallel pipeline runs by using a Cloud Tasks queue with rate limiting.
Why wrong: This doesn't help if quota is already exhausted; it just slows down.
- D
Configure the pipeline's training job to use preemptible VMs (which count toward a separate, usually higher quota).
Preemptible VMs have a separate quota and are cheaper.
Quick Answer
The correct choice is to configure the pipeline’s training job to use preemptible VMs, as these instances draw from a separate, often higher “Preemptible CPUs” quota rather than the exhausted standard regional CPU quota. This allows you to bypass the CPU quota limit in Vertex AI pipelines without requesting a quota increase or altering the existing architecture. On the Google Professional Machine Learning Engineer exam, this scenario tests your understanding of how Vertex AI training jobs can leverage preemptible VMs via `worker_pool_specs` to handle resource constraints, a common trap being that candidates mistakenly focus on scaling or regional migration instead of this simple quota distinction. A useful memory tip: think “preemptible = separate pool,” so when standard CPUs are maxed out, preemptible VMs offer a direct bypass without architectural changes.
PMLE Automating and orchestrating ML pipelines Practice Question
This PMLE practice question tests your understanding of automating and orchestrating ml pipelines. 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 company has a Vertex AI pipeline that trains a model on streaming data from Pub/Sub. The pipeline is triggered by a Cloud Function when new data arrives. Recently, jobs have been failing with 'ResourceExhausted: Quota limit exceeded for regional CPUs in us-central1.' The team needs to ensure successful job execution while minimizing changes. Which approach should they take?
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 pipeline's training job to use preemptible VMs (which count toward a separate, usually higher quota).
Option D is correct because preemptible VMs count toward a separate, often higher quota for 'Preemptible CPUs' rather than the standard regional CPU quota. By configuring the training job to use preemptible VMs, the team can bypass the exhausted quota without requesting a limit increase or changing the pipeline architecture. This minimizes changes while leveraging the fact that Vertex AI training jobs can be configured to use preemptible VMs via the `worker_pool_specs` with `accelerator_type` and `machine_type` settings.
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.
- ✗
Request a quota increase from Google Cloud Support.
Why it's wrong here
This is a valid long-term fix but not minimal; it requires intervention.
- ✗
Change the pipeline to run in a different region with available quota.
Why it's wrong here
This may require data movement and is not minimal change.
- ✗
Reduce the number of parallel pipeline runs by using a Cloud Tasks queue with rate limiting.
Why it's wrong here
This doesn't help if quota is already exhausted; it just slows down.
- ✓
Configure the pipeline's training job to use preemptible VMs (which count toward a separate, usually higher quota).
Why this is correct
Preemptible VMs have a separate quota and are cheaper.
Related concept
Read the scenario before looking for a memorised answer.
Common exam traps
Common exam trap: answer the scenario, not the keyword
Google Cloud often tests the misconception that rate limiting (Option C) solves quota exhaustion, but the trap here is that quota limits are per-resource (e.g., regional CPUs) and rate limiting does not change the per-job resource consumption, so it only delays the inevitable failure.
Detailed technical explanation
How to think about this question
Preemptible VMs in Vertex AI training jobs are short-lived, cost-effective instances that can be terminated at any time by Google Cloud, but they count toward a separate 'Preemptible CPUs' quota (e.g., 200 vCPUs in us-central1) rather than the standard regional CPU quota (e.g., 24 vCPUs). This separate quota is typically higher by default, allowing teams to scale training without requesting increases. However, preemptible VMs are not suitable for long-running or stateful jobs because they can be preempted within 24 hours, so the pipeline must be designed to handle checkpointing and restarts.
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
An e-commerce site experiences heavy traffic on Black Friday and near-zero traffic during off-peak weeks. Rather than provisioning permanent large VMs, the team uses auto-scaling groups that add capacity automatically under load and reduce it overnight. Questions like this test whether you understand elasticity, availability zones, and cloud compute scaling patterns.
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.
- →
Automating and orchestrating ML pipelines — study guide chapter
Learn the concepts, then practise the questions
- →
Automating and orchestrating ML pipelines practice questions
Targeted practice on this topic area only
- →
All PMLE questions
506 questions across all exam domains
- →
Google Professional Machine Learning Engineer study guide
Full concept coverage aligned to exam objectives
- →
PMLE practice test guide
How to use practice tests most effectively before exam day
Related practice questions
Related PMLE practice-question pages
Use these pages to review the topic behind this question. This is how one missed question becomes focused revision.
Scaling prototypes into ML models practice questions
Practise PMLE questions linked to Scaling prototypes into ML models.
Automating and orchestrating ML pipelines practice questions
Practise PMLE questions linked to Automating and orchestrating ML pipelines.
Collaborating within and across teams to manage data and models practice questions
Practise PMLE questions linked to Collaborating within and across teams to manage data and models.
Architecting low-code ML solutions practice questions
Practise PMLE questions linked to Architecting low-code ML solutions.
Collaborating to manage data and models practice questions
Practise PMLE questions linked to Collaborating to manage data and models.
Serving and scaling models practice questions
Practise PMLE questions linked to Serving and scaling models.
Monitoring ML solutions practice questions
Practise PMLE questions linked to Monitoring ML solutions.
Solving business challenges with ML practice questions
Practise PMLE questions linked to Solving business challenges with ML.
PMLE fundamentals practice questions
Practise PMLE questions linked to PMLE fundamentals.
PMLE scenario practice questions
Practise PMLE questions linked to PMLE scenario.
PMLE troubleshooting practice questions
Practise PMLE questions linked to PMLE troubleshooting.
Practice this exam
Start a free PMLE 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 PMLE question test?
Automating and orchestrating ML pipelines — This question tests Automating and orchestrating ML pipelines — Read the scenario before looking for a memorised answer..
What is the correct answer to this question?
The correct answer is: Configure the pipeline's training job to use preemptible VMs (which count toward a separate, usually higher quota). — Option D is correct because preemptible VMs count toward a separate, often higher quota for 'Preemptible CPUs' rather than the standard regional CPU quota. By configuring the training job to use preemptible VMs, the team can bypass the exhausted quota without requesting a limit increase or changing the pipeline architecture. This minimizes changes while leveraging the fact that Vertex AI training jobs can be configured to use preemptible VMs via the `worker_pool_specs` with `accelerator_type` and `machine_type` settings.
What should I do if I get this PMLE 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 PMLE 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 PMLE 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.