The answer is to change the application to use the Aurora cluster writer endpoint and implement retry logic for transient connections. This is correct because the writer endpoint always resolves to the current primary instance, even after a failover, so the application automatically reconnects to the new writer without needing manual DNS updates or hardcoded instance addresses. On the SAA-C03 exam, this tests your understanding of high-availability architecture and how to minimize failover disruption; a common trap is assuming the reader endpoint or a specific instance endpoint will work, but those either point to replicas or become stale during failover. Remember that the writer endpoint is the only DNS name that follows the primary—think of it as the "always-on captain" that never abandons the ship. A simple memory tip: "Writer endpoint, never a dead end."
SAA-C03 Design Resilient Architectures Practice Question
This SAA-C03 practice question tests your understanding of design resilient 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.
Exhibit
Application configuration
JDBC URL: jdbc:postgresql://mydb-instance-1.abcdefghijkl.us-east-1.rds.amazonaws.com:5432/app
Aurora event log
11:15:02 Failover initiated
11:15:04 Writer moved to a different instance
11:18:20 Application still reporting connection refused errors
Notes from the team
The application uses a connection pool and does not re-resolve the endpoint quickly.
Based on the exhibit, the application sees several minutes of connection errors during an Aurora failover. What is the best change to reduce failover impact?
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.
Application configuration
JDBC URL: jdbc:postgresql://mydb-instance-1.abcdefghijkl.us-east-1.rds.amazonaws.com:5432/app
Aurora event log
11:15:02 Failover initiated
11:15:04 Writer moved to a different instance
11:18:20 Application still reporting connection refused errors
Notes from the team
The application uses a connection pool and does not re-resolve the endpoint quickly.
A
Change the application to use the Aurora cluster writer endpoint and retry transient connections.
The current configuration targets a specific instance endpoint, which becomes stale after failover. The Aurora cluster writer endpoint always resolves to the current writer, so the application can reconnect without manual endpoint changes. Adding retries with backoff helps the application survive the short DNS and connection transition during failover.
B
Add an Aurora read replica and keep using the same JDBC URL.
Why wrong: A read replica helps scale read traffic, but it does not solve failover for the writer or the stale-connection problem caused by using a fixed instance endpoint. The application still needs to connect through the cluster writer endpoint.
C
Increase the EC2 instance size of the application servers.
Why wrong: More application server capacity does not address database endpoint changes or stale pooled connections. The failure mode is connectivity to the wrong database endpoint, not lack of compute resources on the app tier.
D
Switch to a single-AZ RDS PostgreSQL instance for simpler connectivity.
Why wrong: A single-AZ database would reduce resilience rather than improve it. It might simplify the topology, but it would increase downtime during infrastructure failure and defeat the purpose of Aurora failover.
Answer the question above first, then reveal the full breakdown to understand why each option is right or wrong.
Correct answer & explanation
✓
Change the application to use the Aurora cluster writer endpoint and retry transient connections.
The Aurora cluster writer endpoint always points to the current primary instance, even after a failover. By using this endpoint and implementing retry logic for transient connection errors, the application can automatically reconnect to the new writer without manual intervention, reducing the impact of the failover from several minutes to seconds.
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.
✓
Change the application to use the Aurora cluster writer endpoint and retry transient connections.
Why this is correct
The current configuration targets a specific instance endpoint, which becomes stale after failover. The Aurora cluster writer endpoint always resolves to the current writer, so the application can reconnect without manual endpoint changes. Adding retries with backoff helps the application survive the short DNS and connection transition during failover.
Clue confirmation
The clue word "best" in the question point toward this answer.
Related concept
Read the scenario before looking for a memorised answer.
✗
Add an Aurora read replica and keep using the same JDBC URL.
Why it's wrong here
A read replica helps scale read traffic, but it does not solve failover for the writer or the stale-connection problem caused by using a fixed instance endpoint. The application still needs to connect through the cluster writer endpoint.
✗
Increase the EC2 instance size of the application servers.
Why it's wrong here
More application server capacity does not address database endpoint changes or stale pooled connections. The failure mode is connectivity to the wrong database endpoint, not lack of compute resources on the app tier.
✗
Switch to a single-AZ RDS PostgreSQL instance for simpler connectivity.
Why it's wrong here
A single-AZ database would reduce resilience rather than improve it. It might simplify the topology, but it would increase downtime during infrastructure failure and defeat the purpose of Aurora failover.
Common exam traps
Common exam trap: answer the scenario, not the keyword
The trap here is that candidates often think adding read replicas or scaling application servers will fix failover connectivity, but the real issue is that the application must use the correct endpoint and handle transient disconnections gracefully.
Detailed technical explanation
How to think about this question
Aurora failover typically completes within 30–60 seconds, but application connection pools may hold stale DNS or TCP connections to the old writer. Using the cluster writer endpoint (a DNS name that updates within seconds after failover) combined with retry logic (e.g., exponential backoff with jitter) allows the application to recover quickly. The JDBC driver's connection timeout and validation queries (e.g., SELECT 1) can further reduce perceived downtime.
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 cloud solutions architect for a retail company is evaluating services for a new workload. The correct answer here reflects best practice for the specific scenario described — not a general cloud recommendation. Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option. Cloud exam questions reward reading the constraint carefully: the same technology can be right or wrong depending on the use case.
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 Resilient Architectures — This question tests Design Resilient Architectures — Read the scenario before looking for a memorised answer..
What is the correct answer to this question?
The correct answer is: Change the application to use the Aurora cluster writer endpoint and retry transient connections. — The Aurora cluster writer endpoint always points to the current primary instance, even after a failover. By using this endpoint and implementing retry logic for transient connection errors, the application can automatically reconnect to the new writer without manual intervention, reducing the impact of the failover from several minutes to seconds.
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.
Are there clue words in this question I should notice?
Yes — watch for: "best". 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 →
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.
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.