Question 229 of 504
Cloud Concepts, Architecture and DesignmediumMultiple ChoiceObjective-mapped

Quick Answer

The best course of action is to pre-warm the AWS environment by requesting a service quota increase and using a pod priority class to ensure critical pods scale first. This directly addresses the root cause of the Kubernetes cluster autoscaler failure due to service quota, as the cluster autoscaler cannot launch new EC2 instances when a hard AWS service quota is exhausted, regardless of demand. By proactively requesting a quota increase, you remove the bottleneck that prevented node scaling during the flash sale, while pod priority classes guarantee that essential microservices are scheduled before lower-priority workloads when resources are constrained. On the CCSP exam, this scenario tests your understanding of cloud infrastructure limits and Kubernetes scheduling mechanics—a common trap is to choose a global load balancer or multi-region deployment, which only redistributes traffic without fixing the underlying quota cap. Remember the memory tip: “Quota first, priority next”—always resolve the hard limit before optimizing scheduling.

CCSP Cloud Concepts, Architecture and Design Practice Question

This CCSP practice question tests your understanding of cloud concepts, architecture and design. Match the stated requirement to the specific cloud service, access model, or configuration option — many options are valid in isolation but not for this scenario. 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.

Your company, a global e-commerce platform, operates on a multi-cloud environment with workloads in AWS and Azure. You are the lead cloud architect. The platform experiences peak traffic during promotional events, with traffic spikes up to 10x normal. The application is composed of microservices running in containers orchestrated by Kubernetes on both clouds. Each cloud provider's Kubernetes cluster uses cluster autoscaler and horizontal pod autoscaler. Recently, during a flash sale, the AWS cluster failed to scale adequately, causing latency spikes and timeouts. AWS support indicated that the cluster hit a service quota limit for EC2 instances. You need to prevent this from recurring. You have the following options: A) Implement a multi-region deployment on AWS to distribute load. B) Pre-warm the AWS environment by requesting a service quota increase and using a pod priority class to ensure critical pods scale first. C) Migrate all workloads to Azure to simplify management. D) Use a global load balancer to route traffic to the cloud with the most available capacity. Which option is the best course of action?

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.

  • Clue: "first"

    Why it matters: Order matters here. You are being tested on which action comes before the others — not which action is generally useful.

Question 1mediummultiple choice
Review the full routing breakdown →

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

Pre-warm the AWS environment by requesting a service quota increase and using a pod priority class to ensure critical pods scale first.

Option D is correct because the root cause is a hard AWS service quota for EC2 instances, which prevents the cluster autoscaler from launching new nodes. Requesting a quota increase removes this bottleneck, while pod priority classes ensure that critical microservices are scheduled first when resources are constrained, preventing latency spikes during flash sales.

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.

  • Migrate all workloads to Azure to simplify management.

    Why it's wrong here

    Migration is complex and does not guarantee avoiding similar quota issues in Azure.

  • Use a global load balancer to route traffic to the cloud with the most available capacity.

    Why it's wrong here

    A global load balancer can help but does not fix the underlying scaling limitation; it may just shift traffic to another cloud that could also hit quotas.

  • Implement a multi-region deployment on AWS to distribute load.

    Why it's wrong here

    Multi-region can help distribute load but does not address the root cause of hitting service quotas in a specific region.

  • Pre-warm the AWS environment by requesting a service quota increase and using a pod priority class to ensure critical pods scale first.

    Why this is correct

    Addresses the quota limit directly and uses priority classes to manage scaling of critical services.

    Clue confirmation

    The clue words "best", "first" in the question point toward this answer.

    Related concept

    Read the scenario before looking for a memorised answer.

Common exam traps

Common exam trap: answer the scenario, not the keyword

ISC2 often tests the misconception that scaling issues are always solved by distributing load (e.g., multi-region or global load balancers), when the actual root cause is a hard resource quota that prevents any new compute capacity from being provisioned.

Trap categories for this question

  • Similar concept trap

    Migration is complex and does not guarantee avoiding similar quota issues in Azure.

Detailed technical explanation

How to think about this question

AWS service quotas (formerly called limits) are per-account, per-region constraints on resources like EC2 instances, and the cluster autoscaler relies on the EC2 API to launch instances. When the quota is hit, the autoscaler receives an InsufficientInstanceCapacity error and cannot add nodes, regardless of pod demand. Pod priority classes (with values 0–1000000000) allow the Kubernetes scheduler to evict lower-priority pods to make room for critical ones, but without node capacity, even high-priority pods cannot be scheduled. Pre-warming involves submitting a quota increase request via AWS Support Center or Service Quotas API, which can take hours to days, so it must be done before peak events.

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 SOC analyst notices unusual lateral movement in the network at 2 AM. The IR playbook dictates: identify and contain (isolate the affected machine), then eradicate (remove the malware), then recover (restore from backup), then document. Skipping containment before eradication risks the attacker regaining access. Questions like this test the sequence and rationale of incident response phases.

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 CCSP 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 CCSP 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 CCSP question test?

Cloud Concepts, Architecture and Design — This question tests Cloud Concepts, Architecture and Design — Read the scenario before looking for a memorised answer..

What is the correct answer to this question?

The correct answer is: Pre-warm the AWS environment by requesting a service quota increase and using a pod priority class to ensure critical pods scale first. — Option D is correct because the root cause is a hard AWS service quota for EC2 instances, which prevents the cluster autoscaler from launching new nodes. Requesting a quota increase removes this bottleneck, while pod priority classes ensure that critical microservices are scheduled first when resources are constrained, preventing latency spikes during flash sales.

What should I do if I get this CCSP 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", "first". 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 →

How Courseiva writes practice questions · Editorial policy

Last reviewed: Jun 30, 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 CCSP practice question is part of Courseiva's free ISC2 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 CCSP exam.