Question 919 of 1,746
Continuous Improvement for Existing SolutionshardMultiple ChoiceObjective-mapped

Quick Answer

The answer is to use the RDS Multi-AZ DNS name (CNAME) that automatically updates after failover. This is correct because the Multi-AZ DNS record is a static endpoint that always resolves to the current primary instance; when a failover occurs, AWS automatically updates the DNS mapping to the new primary, so applications that reconnect using this name experience minimal downtime. On the AWS Certified Solutions Architect Professional SAP-C02 exam, this question tests your understanding of RDS high-availability architecture versus application-layer workarounds—a common trap is over-engineering with load balancers or read replicas, which do not handle automatic failover. The key insight is that RDS Multi-AZ already provides a built-in failover mechanism via its CNAME, so you must avoid changing the connection string to the primary instance’s direct DNS. Memory tip: think “CNAME for the win” — the CNAME is the single, resilient pointer that survives a failover, while the primary DNS is a fragile, direct address.

SAP-C02 Continuous Improvement for Existing Solutions Practice Question

This SAP-C02 practice question tests your understanding of continuous improvement for existing solutions. 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 company uses Amazon RDS for MySQL with Multi-AZ deployment. During a recent failover, they experienced a few minutes of downtime because the application's connection string pointed to the primary instance DNS name. What is the MOST effective solution to minimize downtime during failover?

Clue words in this question

Noticing these words before you look at the options changes how you read each choice.

  • Clue: "primary"

    Why it matters: Asks for the main purpose or function, not a secondary benefit. Eliminate answers that describe side-effects or partial functions.

  • 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.

Question 1hardmultiple choice
Read the full DNS explanation →

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

Use the RDS Multi-AZ DNS name (CNAME) that automatically updates after failover.

Option B is correct because using the RDS cluster endpoint (for Aurora) or the Multi-AZ DNS name (which automatically points to the current primary) ensures the application reconnects with minimal disruption. Option A is wrong because read replicas are for read scaling, not automatic failover. Option C is wrong because using an Elastic IP with RDS is not supported. Option D is wrong because a Network Load Balancer adds complexity and latency.

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.

  • Use the RDS Multi-AZ DNS name (CNAME) that automatically updates after failover.

    Why this is correct

    The Multi-AZ DNS name automatically points to the new primary after failover.

    Clue confirmation

    The clue words "primary", "minimum / minimize" in the question point toward this answer.

    Related concept

    Read the scenario before looking for a memorised answer.

  • Assign an Elastic IP address to the RDS instance.

    Why it's wrong here

    Elastic IPs are not supported for RDS.

  • Create a read replica in another Region and promote it during failover manually.

    Why it's wrong here

    Manual promotion causes downtime.

  • Configure a Network Load Balancer in front of the RDS instance.

    Why it's wrong here

    NLB adds unnecessary complexity and is not recommended for RDS.

Common exam traps

Common exam trap: answer the scenario, not the keyword

Many certification questions include familiar terms but test a specific constraint. Read the exact wording before choosing an answer that is generally true but wrong for this case.

Detailed technical explanation

How to think about this question

This question should be treated as a scenario, not a definition check. Identify the problem, the constraint and the best action. Then compare each option against those facts.

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.
  • Use explanations to understand the rule behind the answer.

TExam Day Tips

  • Underline the problem statement mentally.
  • 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 healthcare organisation deploys an application with a public-facing web tier and a private database tier. The database subnet has no public IP and only accepts connections from the web tier's security group. Questions like this test whether you can design cloud network isolation using VNets/VPCs, subnets, and security group rules.

What to study next

Got this wrong? Here's your next step.

Identify which SAP-C02 exam domain this question belongs to, then review the specific concept being tested. Practise related questions in that domain and focus on understanding why each wrong answer is tempting — not just why the correct answer is right.

Related practice questions

Related SAP-C02 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 SAP-C02 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 SAP-C02 question test?

Continuous Improvement for Existing Solutions — This question tests Continuous Improvement for Existing Solutions — Read the scenario before looking for a memorised answer..

What is the correct answer to this question?

The correct answer is: Use the RDS Multi-AZ DNS name (CNAME) that automatically updates after failover. — Option B is correct because using the RDS cluster endpoint (for Aurora) or the Multi-AZ DNS name (which automatically points to the current primary) ensures the application reconnects with minimal disruption. Option A is wrong because read replicas are for read scaling, not automatic failover. Option C is wrong because using an Elastic IP with RDS is not supported. Option D is wrong because a Network Load Balancer adds complexity and latency.

What should I do if I get this SAP-C02 question wrong?

Identify which SAP-C02 exam domain this question belongs to, then review the specific concept being tested. Practise related questions in that domain and focus on understanding why each wrong answer is tempting — not just why the correct answer is right.

Are there clue words in this question I should notice?

Yes — watch for: "primary", "minimum / minimize". Asks for the main purpose or function, not a secondary benefit. Eliminate answers that describe side-effects or partial functions.

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

Same concept, more angles

2 more ways this is tested on SAP-C02

These questions test the same concept from different angles. Work through them to make sure you can recognise it however the exam phrases it.

Variation 1. A company uses Amazon RDS for MySQL with Multi-AZ deployment. During a recent failover, the application experienced a 5-minute downtime. The application uses a connection pool with a 30-second connection timeout. The RDS DNS name is used as the endpoint. What is the MOST likely cause of the downtime?

hard
  • A.The DNS TTL for the RDS endpoint is set too high
  • B.The connection pool timeout is too short to allow failover
  • C.The Multi-AZ failover took longer than expected
  • D.The application is using the wrong endpoint after failover

Why A: Option B is correct because DNS TTL caching can cause the application to resolve the old IP for the duration of the TTL, even after the DNS record is updated during failover. Option A is wrong because the RDS DNS name remains the same after failover; only the IP changes. Option C is wrong because the connection pool's connection timeout is 30 seconds, which is short, but the issue is DNS caching, not timeout. Option D is wrong because RDS failover typically takes less than 2 minutes, but the 5-minute downtime suggests DNS propagation delay.

Variation 2. A company uses Amazon RDS for MySQL with Multi-AZ deployment. They notice that during a failover, the application experiences a brief outage but then recovers. They want to minimize the failover time. Which action will most effectively reduce the failover time?

medium
  • A.Disable Multi-AZ to avoid failover altogether.
  • B.Create a read replica and promote it during failover.
  • C.Enable Amazon RDS Proxy.
  • D.Increase the DB instance size to improve performance.

Why C: Option A is correct because enabling Amazon RDS Proxy provides connection pooling and reduces failover time by keeping connections alive. Option B is wrong because read replicas are for read scaling, not for reducing failover time. Option C is wrong because increasing instance size doesn't directly affect failover time. Option D is wrong because disabling Multi-AZ increases downtime.

Last reviewed: Jun 20, 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 SAP-C02 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 SAP-C02 exam.