- A
Increase the t3.large maximum CPU credits and keep the Auto Scaling group using the same burstable instance type.
Why wrong: Increasing credits can reduce throttling for short or intermittent bursts, but t3 instances still depend on accumulated CPU credits. During sustained peak traffic, credits will deplete and the instance can throttle, so p95 latency predictability remains limited.
- B
Change the Auto Scaling group instance type to a compute-optimized family (for example, c7i) to provide steady CPU performance.
Compute-optimized instances are designed for consistently high CPU performance and do not rely on a burst-credit model. Switching to a steady-performance family removes the credit-depletion/throttling pattern that is driving the p95 latency spikes under sustained load.
- C
Add a placement group to the existing t3.large instances so they are packed close together for lower latency between nodes.
Why wrong: Placement groups can help certain network-oriented communication patterns by improving latency and/or bandwidth, but the observed symptom is CPU credit depletion on burstable instances. Changing placement does not address CPU throttling caused by credit exhaustion.
- D
Switch the workload to run on Lambda with the same logic so invocations automatically scale without instance selection changes.
Why wrong: Lambda may scale automatically, but provisioned and on-demand execution characteristics do not inherently remove the underlying issue you observed (burstable CPU throttling on t3). For CPU-bound, latency-sensitive batch-like processing, moving to Lambda could introduce other constraints (cold starts, execution limits, concurrency dynamics) and does not directly target credit-based throttling as the root cause.
Quick Answer
The answer is to switch the Auto Scaling group instance type to a compute-optimized family like c7i, which provides steady CPU performance. This is correct because t3.large instances are burstable and rely on CPU credits; once credits are depleted, performance is throttled to a baseline of roughly 30%, causing unpredictable processing times even when average CPU sits at 40–50%. The key technical concept here is that CPU credit depletion directly undermines performance predictability for CPU-heavy workloads, as the throttling introduces latency spikes during peak traffic that average utilization metrics fail to capture. On the SAA-C03 exam, this scenario tests your understanding of when burstable instances are inappropriate—a common trap is assuming moderate average CPU means the instance is fine, but the p95 spike reveals credit exhaustion. A useful memory tip: if your workload needs consistent compute, avoid the “credit crunch”—choose a dedicated instance family like C or M for steady baseline performance.
SAA-C03 Design High-Performing Architectures Practice Question
This SAA-C03 practice question tests your understanding of design high-performing architectures. Read the scenario carefully and evaluate each option against the stated constraints before committing to an answer. 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 media platform runs a CPU-heavy thumbnail generation workload on an EC2 Auto Scaling group using t3.large instances. During peak traffic, p95 processing time increases significantly even though average CPU remains around 40–50%. CloudWatch also shows CPU credit depletion behavior. Which change will most directly improve performance predictability for this workload?
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
Change the Auto Scaling group instance type to a compute-optimized family (for example, c7i) to provide steady CPU performance.
The t3.large instances rely on CPU credits for burst performance, and when credits are exhausted, CPU performance is throttled to the baseline (e.g., 30% for t3.large). This causes unpredictable processing times during peak traffic, even if average CPU is moderate. Switching to a compute-optimized family like c7i provides dedicated, consistent CPU performance without credit-based throttling, directly improving predictability for CPU-heavy thumbnail generation.
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.
- ✗
Increase the t3.large maximum CPU credits and keep the Auto Scaling group using the same burstable instance type.
Why it's wrong here
Increasing credits can reduce throttling for short or intermittent bursts, but t3 instances still depend on accumulated CPU credits. During sustained peak traffic, credits will deplete and the instance can throttle, so p95 latency predictability remains limited.
- ✓
Change the Auto Scaling group instance type to a compute-optimized family (for example, c7i) to provide steady CPU performance.
Why this is correct
Compute-optimized instances are designed for consistently high CPU performance and do not rely on a burst-credit model. Switching to a steady-performance family removes the credit-depletion/throttling pattern that is driving the p95 latency spikes under sustained load.
Related concept
Read the scenario before looking for a memorised answer.
- ✗
Add a placement group to the existing t3.large instances so they are packed close together for lower latency between nodes.
Why it's wrong here
Placement groups can help certain network-oriented communication patterns by improving latency and/or bandwidth, but the observed symptom is CPU credit depletion on burstable instances. Changing placement does not address CPU throttling caused by credit exhaustion.
- ✗
Switch the workload to run on Lambda with the same logic so invocations automatically scale without instance selection changes.
Why it's wrong here
Lambda may scale automatically, but provisioned and on-demand execution characteristics do not inherently remove the underlying issue you observed (burstable CPU throttling on t3). For CPU-bound, latency-sensitive batch-like processing, moving to Lambda could introduce other constraints (cold starts, execution limits, concurrency dynamics) and does not directly target credit-based throttling as the root cause.
Common exam traps
Common exam trap: answer the scenario, not the keyword
The trap here is that candidates assume 'CPU credit depletion' can be fixed by increasing credits or scaling out, but the real issue is that burstable instances are fundamentally unsuitable for sustained CPU-heavy workloads, and only switching to a non-burstable instance type (e.g., compute-optimized) guarantees predictable performance.
Detailed technical explanation
How to think about this question
T3 instances use a credit system where each vCPU earns credits at a baseline rate (e.g., 24 credits/hour for t3.large) and can burst up to 100% CPU for short periods. Once the credit balance is exhausted, CPU is throttled to the baseline, causing performance degradation. Compute-optimized instances like c7i use dedicated physical cores with no credit mechanism, ensuring consistent CPU performance regardless of usage duration. For CPU-bound workloads, this eliminates the 'credit starvation' behavior that causes p95 latency spikes.
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.
- →
Design High-Performing Architectures — study guide chapter
Learn the concepts, then practise the questions
- →
Design High-Performing Architectures practice questions
Targeted practice on this topic area only
- →
All SAA-C03 questions
1,040 questions across all exam domains
- →
SAA-C03 study guide
Full concept coverage aligned to exam objectives
- →
SAA-C03 practice test guide
How to use practice tests most effectively before exam day
Related practice questions
Related SAA-C03 practice-question pages
Use these pages to review the topic behind this question. This is how one missed question becomes focused revision.
Design Secure Architectures practice questions
Practise SAA-C03 questions linked to Design Secure Architectures.
Design Resilient Architectures practice questions
Practise SAA-C03 questions linked to Design Resilient Architectures.
Design High-Performing Architectures practice questions
Practise SAA-C03 questions linked to Design High-Performing Architectures.
Design Cost-Optimized Architectures practice questions
Practise SAA-C03 questions linked to Design Cost-Optimized Architectures.
SAA-C03 VPC practice questions
Practise SAA-C03 questions linked to SAA-C03 VPC.
SAA-C03 S3 lifecycle policy questions
Practise SAA-C03 questions linked to SAA-C03 S3 lifecycle policy questions.
SAA-C03 RDS Multi-AZ questions
Practise SAA-C03 questions linked to SAA-C03 RDS Multi-AZ questions.
SAA-C03 IAM policy practice questions
Practise SAA-C03 questions linked to SAA-C03 IAM policy.
SAA-C03 Route 53 failover questions
Practise SAA-C03 questions linked to SAA-C03 Route 53 failover questions.
SAA-C03 CloudFront practice questions
Practise SAA-C03 questions linked to SAA-C03 CloudFront.
SAA-C03 NAT gateway questions
Practise SAA-C03 questions linked to SAA-C03 NAT gateway questions.
SAA-C03 VPC endpoint questions
Practise SAA-C03 questions linked to SAA-C03 VPC endpoint questions.
Practice this exam
Start a free SAA-C03 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 SAA-C03 question test?
Design High-Performing Architectures — This question tests Design High-Performing Architectures — Read the scenario before looking for a memorised answer..
What is the correct answer to this question?
The correct answer is: Change the Auto Scaling group instance type to a compute-optimized family (for example, c7i) to provide steady CPU performance. — The t3.large instances rely on CPU credits for burst performance, and when credits are exhausted, CPU performance is throttled to the baseline (e.g., 30% for t3.large). This causes unpredictable processing times during peak traffic, even if average CPU is moderate. Switching to a compute-optimized family like c7i provides dedicated, consistent CPU performance without credit-based throttling, directly improving predictability for CPU-heavy thumbnail generation.
What should I do if I get this SAA-C03 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 →
Keep practising
More SAA-C03 practice questions
- A content publishing system uses Lambda functions that call an unreliable third-party API. Failed events must be retaine…
- A startup runs two EC2-based workloads in the same AWS Region. Its customer-facing API is always on, and its nightly vid…
- A warehouse integration service must use shared file storage across Linux EC2 instances in multiple Availability Zones.…
- A team runs a stateless web app on Amazon EC2 behind an Application Load Balancer. During traffic spikes, new EC2 instan…
- A service in private subnets downloads product images from Amazon S3 and stores job state in DynamoDB. A NAT Gateway is…
- A static site is hosted in Amazon S3 and delivered by CloudFront. After a frontend release, the same JavaScript bundles…
Last reviewed: Jun 11, 2026
This SAA-C03 practice question is part of Courseiva's free Amazon Web Services 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 SAA-C03 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.