0
0
AWScloud~20 mins

Failover routing for disaster recovery in AWS - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Failover Routing Mastery
Get all challenges correct to earn this badge!
Test your skills under time pressure!
🧠 Conceptual
intermediate
2:00remaining
Understanding Failover Routing Behavior

In AWS Route 53, failover routing is used to route traffic to a primary resource and switch to a secondary resource if the primary becomes unhealthy.

What happens when the health check for the primary resource fails?

ARoute 53 stops routing traffic to both primary and secondary resources until manual intervention.
BTraffic continues to be routed to the primary resource regardless of health check status.
CTraffic is automatically routed to the secondary resource configured in the failover routing policy.
DTraffic is routed randomly between primary and secondary resources.
Attempts:
2 left
💡 Hint

Think about what failover means in disaster recovery.

Configuration
intermediate
2:00remaining
Configuring Health Checks for Failover Routing

You want to configure failover routing in AWS Route 53 to switch traffic to a backup server if the primary server is down.

Which of the following is a required step to enable failover routing?

AConfigure a weighted routing policy instead of failover routing.
BCreate a health check for the secondary resource only.
CDisable health checks and rely on DNS TTL for failover.
DCreate a health check for the primary resource and associate it with the primary record set.
Attempts:
2 left
💡 Hint

Failover routing depends on health checks to detect failures.

Architecture
advanced
2:30remaining
Designing a Multi-Region Failover Architecture

You are designing a disaster recovery solution using AWS Route 53 failover routing between two regions.

Which architecture best supports automatic failover with minimal downtime?

APrimary region hosts the application with a health check; secondary region is standby with identical setup and DNS failover configured.
BBoth regions serve traffic simultaneously with weighted routing and no health checks.
CSecondary region hosts the application; primary region is used only for backups.
DPrimary region only, with manual DNS update to secondary region during failure.
Attempts:
2 left
💡 Hint

Failover routing requires health checks and a standby resource ready to serve traffic.

security
advanced
2:00remaining
Security Considerations in Failover Routing

When implementing failover routing for disaster recovery, which security practice is most important to protect DNS failover configurations?

ARestrict Route 53 console access using IAM policies to authorized personnel only.
BUse public IP addresses only for all resources to simplify routing.
CDisable health checks to prevent false failover triggers.
DAllow all users to modify DNS records for faster recovery.
Attempts:
2 left
💡 Hint

Think about who should control DNS settings in a disaster recovery setup.

service_behavior
expert
3:00remaining
Analyzing Failover Routing Behavior with Health Check Flapping

In AWS Route 53 failover routing, if the primary resource's health check status rapidly changes between healthy and unhealthy (flapping), what is the expected behavior?

ARoute 53 immediately switches traffic to secondary resource on any unhealthy status without delay.
BRoute 53 uses a configurable evaluation period to stabilize health check status before switching traffic, preventing rapid failover toggling.
CRoute 53 disables failover routing until manual reset is performed.
DRoute 53 routes traffic to both primary and secondary resources simultaneously during flapping.
Attempts:
2 left
💡 Hint

Consider how health checks are evaluated over time to avoid instability.