- A
Amazon Aurora Serverless v2 — scales automatically from minimum capacity during idle to maximum during spikes
Aurora Serverless v2 scales in sub-second increments based on actual load. You pay only for ACUs consumed — idle periods cost near-minimum. No manual scaling required.
- B
Amazon Aurora Provisioned with Auto Scaling to add and remove read replicas
Why wrong: Aurora Auto Scaling adds/removes read replicas but cannot scale the primary writer. The provisioned primary incurs full instance cost during idle periods regardless of load.
- C
Amazon RDS MySQL with scheduled stop/start to save costs during predictable off-hours
Why wrong: RDS stop/start halts the database — no queries can be served while stopped. SaaS applications with unpredictable access patterns require continuous availability.
- D
Amazon DynamoDB with on-demand capacity mode — scales to any traffic level with no minimum cost
Why wrong: DynamoDB on-demand is excellent for NoSQL workloads but migrating a relational database to DynamoDB requires major application refactoring not implied by the question. Aurora Serverless v2 provides equivalent cost benefits without architectural changes.
Quick Answer
The answer is Amazon Aurora Serverless v2 because it is the most cost-effective solution for unpredictable workloads that spike from zero to thousands of queries per second. Unlike Aurora Provisioned, which requires you to pay for a pre-provisioned primary instance even when idle, Aurora Serverless v2 scales from as low as 0.5 ACUs during quiet periods up to 128 ACUs within seconds, and you only pay for the ACUs actually consumed. On the SAA-C03 exam, this scenario tests your understanding of the trade-off between paying for idle capacity versus automatic scaling; the common trap is choosing Provisioned with Auto Scaling, which still incurs full cost for the minimum provisioned instance. Remember the key distinction: Serverless v2 is for unpredictable, bursty loads where you want to pay only for what you use, while Provisioned is for steady-state or predictable traffic. A helpful memory tip is “Serverless for spikes, Provisioned for predictable.”
SAA-C03 Design Cost-Optimized Architectures Practice Question
This SAA-C03 practice question tests your understanding of design cost-optimized architectures. Read the scenario carefully and evaluate each option against the stated constraints before committing to an answer. A key principle to apply: aurora Serverless v2 scales from 0.5 ACUs to 128 ACUs in sub-second increments. 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 runs a SaaS application with highly unpredictable database load — it may receive zero queries for hours, then spike to thousands of queries per second briefly. The company wants to minimize database costs while handling all load levels without manual scaling. Which solution is MOST cost-effective?
Clue words in this question
Noticing these words before you look at the options changes how you read each choice.
Clue:
"minimum / minimize"Why it matters: Asks for the least resource use — fewest addresses, smallest subnet, lowest overhead. Eliminate over-provisioned options even if they would technically work.
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
Amazon Aurora Serverless v2 — scales automatically from minimum capacity during idle to maximum during spikes
Amazon Aurora Serverless v2 automatically scales database capacity based on actual load. It scales from a minimum of 0.5 ACUs during quiet periods to up to 128 ACUs during spikes within seconds. You pay only for the ACUs consumed — idle periods cost near-minimum. Aurora Provisioned requires pre-provisioning capacity for peak load, incurring full instance costs regardless of actual utilization. Even with Auto Scaling, the primary instance has a minimum provisioned capacity that runs at full cost during idle periods.
Key principle: Aurora Serverless v2 scales from 0.5 ACUs to 128 ACUs in sub-second increments
Answer analysis
Option-by-option breakdown
For each option: why learners choose it and why it is or isn't the right answer here.
- ✓
Amazon Aurora Serverless v2 — scales automatically from minimum capacity during idle to maximum during spikes
Why this is correct
Aurora Serverless v2 scales in sub-second increments based on actual load. You pay only for ACUs consumed — idle periods cost near-minimum. No manual scaling required.
Clue confirmation
The clue word "minimum / minimize" in the question point toward this answer.
Related concept
Aurora Serverless v2 scales from 0.5 ACUs to 128 ACUs in sub-second increments
- ✗
Amazon Aurora Provisioned with Auto Scaling to add and remove read replicas
Why it's wrong here
Aurora Auto Scaling adds/removes read replicas but cannot scale the primary writer. The provisioned primary incurs full instance cost during idle periods regardless of load.
- ✗
Amazon RDS MySQL with scheduled stop/start to save costs during predictable off-hours
Why it's wrong here
RDS stop/start halts the database — no queries can be served while stopped. SaaS applications with unpredictable access patterns require continuous availability.
- ✗
Amazon DynamoDB with on-demand capacity mode — scales to any traffic level with no minimum cost
Why it's wrong here
DynamoDB on-demand is excellent for NoSQL workloads but migrating a relational database to DynamoDB requires major application refactoring not implied by the question. Aurora Serverless v2 provides equivalent cost benefits without architectural changes.
Common exam traps
Common exam trap: answer the scenario, not the keyword
Aurora Serverless v1 and v2 are different products. v1 supports true pause-to-zero but has a cold-start delay (~25 seconds) and fewer supported features. v2 scales much faster (sub-second), supports more Aurora features including Global Database and Multi-AZ, and scales to 0.5 ACU minimum. For modern architectures, Aurora Serverless v2 is the correct recommendation.
Detailed technical explanation
How to think about this question
Aurora Serverless v2 pricing: - ACU-hours at ~$0.12/ACU-hour (region dependent) - Minimum: 0.5 ACU when idle (not free, but very low cost) - Scales in 0.5 ACU increments up to 128 ACUs Comparison for 1 month with frequent idle periods: - Serverless v2 at 0.5 ACU base: ~$0.12 x 0.5 x 720h = $43/month base + spikes - Provisioned db.t4g.micro: ~$0.016/hour x 720 = $11.5/month (but cannot scale for spikes) - Provisioned db.r6g.large (handles spikes): ~$0.29/hour x 720 = $209/month always-on Serverless v2 wins when: significant idle time + variable/unpredictable spikes + no manual scaling desired.
KKey Concepts to Remember
- Aurora Serverless v2 scales from 0.5 ACUs to 128 ACUs in sub-second increments
- You pay only for ACUs consumed — idle periods cost near-minimum (0.5 ACU)
- Aurora Provisioned instances incur full cost regardless of actual load
- Aurora Auto Scaling adds/removes read replicas but cannot scale the primary writer
- Aurora Serverless v2 supports Multi-AZ, Global Database, and RDS Proxy
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
Aurora Serverless v2 scales from 0.5 ACUs to 128 ACUs in sub-second increments
Real-world example
How this comes up in practice
A startup's cloud architect reviews their monthly bill and notices costs are higher than expected for a long-running batch job. Switching from on-demand instances to Reserved Instances — or using Spot/Preemptible VMs — can reduce compute costs by up to 72 %. Questions like this test whether you understand the tradeoffs between commitment, flexibility, and cost across cloud pricing models.
What to study next
Got this wrong? Here's your next step.
Review aurora Serverless v2 scales from 0.5 ACUs to 128 ACUs in sub-second increments, then practise related SAA-C03 questions on the same topic to reinforce the concept.
- →
Design Cost-Optimized Architectures — study guide chapter
Learn the concepts, then practise the questions
- →
Design Cost-Optimized 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 Cost-Optimized Architectures — This question tests Design Cost-Optimized Architectures — Aurora Serverless v2 scales from 0.5 ACUs to 128 ACUs in sub-second increments.
What is the correct answer to this question?
The correct answer is: Amazon Aurora Serverless v2 — scales automatically from minimum capacity during idle to maximum during spikes — Amazon Aurora Serverless v2 automatically scales database capacity based on actual load. It scales from a minimum of 0.5 ACUs during quiet periods to up to 128 ACUs during spikes within seconds. You pay only for the ACUs consumed — idle periods cost near-minimum. Aurora Provisioned requires pre-provisioning capacity for peak load, incurring full instance costs regardless of actual utilization. Even with Auto Scaling, the primary instance has a minimum provisioned capacity that runs at full cost during idle periods.
What should I do if I get this SAA-C03 question wrong?
Review aurora Serverless v2 scales from 0.5 ACUs to 128 ACUs in sub-second increments, then practise related SAA-C03 questions on the same topic to reinforce the concept.
Are there clue words in this question I should notice?
Yes — watch for: "minimum / minimize". Asks for the least resource use — fewest addresses, smallest subnet, lowest overhead. Eliminate over-provisioned options even if they would technically work.
What is the key concept behind this question?
Aurora Serverless v2 scales from 0.5 ACUs to 128 ACUs in sub-second increments
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: May 17, 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.