AWS Certified Solutions Architect – Professional (SAP-C02) — Question 436

A public retail web application uses an Application Load Balancer (ALB) in front of Amazon EC2 instances running across multiple Availability Zones (AZs) in a Region backed by an Amazon RDS MySQL Multi-AZ deployment. Target group health checks are configured to use HTTP and pointed at the product catalog page. Auto Scaling is configured to maintain the web fleet size based on the ALB health check.

Recently, the application experienced an outage. Auto Scaling continuously replaced the instances during the outage. A subsequent investigation determined that the web server metrics were within the normal range, but the database tier was experiencing high load, resulting in severely elevated query response times.

Which of the following changes together would remediate these issues while improving monitoring capabilities for the availability and functionality of the entire application stack for future growth? (Choose two.)

Answer options

Correct answer: B, E

Explanation

Pointing the ALB health check to a database-dependent page causes Auto Scaling to incorrectly identify healthy EC2 instances as unhealthy when the database is slow; switching the health check to a static HTML page prevents this, while Route 53 handles full-stack monitoring. To resolve the root cause of the database performance degradation, implementing Amazon ElastiCache caches frequent read queries and significantly reduces the load on the RDS MySQL database.