Which of the following best describes the primary benefit of deploying an AWS RDS database instance in Multi-AZ mode?
Think about what Multi-AZ means for availability and data safety.
Multi-AZ deployments create a synchronous standby replica in a different Availability Zone. This setup improves fault tolerance by allowing automatic failover if the primary instance fails.
What is the expected behavior of an AWS Elastic Load Balancer (ELB) when one of its registered EC2 instances becomes unhealthy?
Consider how ELB ensures availability by managing traffic distribution.
ELB performs health checks and stops routing traffic to instances that fail health checks, ensuring only healthy instances receive traffic.
You want to design a highly available web application on AWS that restricts access to backend databases only from application servers. Which combination of AWS features best achieves this?
Think about subnet types and security groups to restrict access.
Placing databases in private subnets protects them from direct internet access. Security groups restrict traffic to only allow application servers to connect, enhancing security and availability.
Which Auto Scaling group configuration best supports high availability for a web application across multiple Availability Zones?
Consider how spreading instances across zones improves availability.
Spanning multiple Availability Zones with minimum instances in each ensures the application remains available even if one zone fails.
In a multi-region AWS architecture using Route 53 with health checks and failover routing policy, what happens when the primary region becomes unreachable?
Think about how DNS failover works with health checks in Route 53.
Route 53 monitors the health of the primary region and automatically switches DNS responses to the secondary region if the primary is unhealthy, ensuring availability.