hardmulti selectObjective-mapped

An application uses Amazon Aurora MySQL. CloudWatch shows the writer instance near 85% CPU while the only reader instance averages 15% CPU. Trace logs show that all SELECT statements still target the writer endpoint. The workload is read-heavy, and the application already tolerates eventual consistency for reads. Which two changes will best increase total read throughput without a schema redesign? Select two.

Question 1hardmulti select
Full question →

An application uses Amazon Aurora MySQL. CloudWatch shows the writer instance near 85% CPU while the only reader instance averages 15% CPU. Trace logs show that all SELECT statements still target the writer endpoint. The workload is read-heavy, and the application already tolerates eventual consistency for reads. Which two changes will best increase total read throughput without a schema redesign? Select two.

Answer choices

Why each option matters

Good practice is not just finding the correct option. The wrong answers often show the exact trap the exam wants you to fall into.

A

Best answer

Point read-only queries to the Aurora reader endpoint instead of the writer endpoint.

The reader endpoint is intended for read-only traffic and automatically distributes connections across Aurora Replicas. Redirecting SELECT statements away from the writer immediately reduces CPU pressure on the writer and uses the unused read capacity already available in the cluster. This is the fastest, lowest-risk way to improve read throughput without changing the schema or the application data model.

B

Best answer

Add one or more additional Aurora Replicas and distribute read traffic across them.

Each additional Aurora Replica adds independent read capacity to the cluster. For a read-heavy workload, more replicas increase total throughput and provide more room for the application to spread load. Because the application already accepts eventual consistency, replicas are a good fit and can be used through the reader endpoint or application-side routing.

C

Distractor review

Convert the cluster to a single-AZ RDS MySQL instance to reduce replication overhead.

This would remove Aurora’s read-scaling architecture and reduce availability. A single-AZ instance also concentrates all traffic on one node, which is the opposite of what this workload needs. It may reduce replication complexity, but it does not increase read throughput.

D

Distractor review

Replace the writer endpoint with the instance endpoint of the primary node to speed up SELECT queries.

The primary writer is already the bottleneck in the scenario. Sending more SELECT traffic to the writer endpoint or its instance endpoint increases contention on the busiest node and does not add any new read capacity. That choice worsens the current CPU imbalance.

E

Distractor review

Add Amazon ElastiCache and move all database writes into the cache layer.

A cache can offload some read traffic, but it is not a substitute for the database for transactional writes. Moving writes into a cache layer would break durability and consistency guarantees. The question asks for a direct Aurora read-scaling fix without schema redesign, so replica-based scaling is the right approach.

Common exam trap

Common exam trap: NAT rules depend on direction and matching traffic

NAT is not only about the public address. The inside/outside interface roles and the ACL or rule that matches traffic are just as important.

Technical deep dive

How to think about this question

NAT questions usually test address translation, overload/PAT behaviour, static mappings and whether the right traffic is being translated. Read the interface direction and address terms carefully.

KKey Concepts to Remember

  • Static NAT maps one inside address to one outside address.
  • PAT allows many inside hosts to share one public address using ports.
  • Inside local and inside global describe the private and translated addresses.
  • NAT ACLs identify traffic for translation, not always security filtering.

TExam Day Tips

  • Identify inside and outside interfaces first.
  • Check whether the scenario needs static NAT, dynamic NAT or PAT.
  • Do not confuse NAT matching ACLs with normal packet-filtering intent.

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.

More questions from this exam

Keep practising from the same exam bank, or move into a focused topic page if this question exposed a weak area.

FAQ

Questions learners often ask

What does this SAA-C03 question test?

Static NAT maps one inside address to one outside address.

What is the correct answer to this question?

The correct answer is: Point read-only queries to the Aurora reader endpoint instead of the writer endpoint. — The writer is overloaded because read traffic is being sent to the writer endpoint instead of the reader endpoint. Moving SELECT statements to the reader endpoint immediately uses the existing replica capacity, and adding more Aurora Replicas increases total read throughput further. Together, these changes directly address the read bottleneck while preserving the current design and the application’s tolerance for eventual consistency. Converting to a single-AZ RDS instance reduces resilience and removes Aurora read-scaling benefits. Sending more traffic to the writer endpoint worsens the bottleneck. ElastiCache can help some read patterns, but it does not replace the database for writes and is not the most direct answer to this Aurora read-scaling issue.

What should I do if I get this SAA-C03 question wrong?

Then try more questions from the same exam bank and focus on understanding why the wrong options are tempting.

Discussion

Loading comments…

Sign in to join the discussion.