Exam SAP-C02 All QuestionsBrowse all questions from this exam
Question 443

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

    Correct Answer: A, E

    To remediate the issue and improve monitoring capabilities, two critical changes should be implemented. First, configure read replicas for Amazon RDS MySQL and use the single reader endpoint in the web application to reduce the load on the backend database tier. This ensures that read operations are distributed among replicas, alleviating the strain on the primary database instance during high load scenarios. Second, placing an Amazon ElastiCache cluster between the web application and RDS MySQL instances can also reduce the load on the backend database tier by caching frequently accessed data. This improves response times and overall application performance, thus addressing the elevated query response times experienced during high load periods.

Discussion
Capt_LeonidasOptions: BE

https://www.examtopics.com/discussions/amazon/view/46826-exam-aws-certified-solutions-architect-professional-topic-1/

pangchnOptions: BE

My answer is a bit difference. It doesn't mentioned read-only scnerio so read replica in A may not able to help compare B and C, both pro and con. I lean to B from both the real world and in this particual question to bypass the database

w3ap0nxOptions: BE

"for future growth" -> E (cache in front of the DB)

titi_rOptions: BE

B and E.

ovladan

Selected Answer: BE B: Will improve web app D: Will improve database high load issue and query response times.

seetptOptions: BE

BE for me

Russs99Option: A

A and B are my picks

djangoUnchainedOptions: AB

B. Health check is failing because the application cannot read from the DB, event though the EC2 instance is fine. As a result the ALB is terminating the EC2 instance unnecessarily.

michele_scarOptions: BE

When you talking about a product catalog page, you need to cache information (text, images) to leverage the load on the data tier. ElastiCache is the solution (or a CDN).

red_pandaOptions: AB

A and B are my answers. A instead of E only because we have no tips that indicate the necessity to have a caching systems. For example, it say "high load on database", but nothing about same record read more more time. So for me A and B

VerRiOptions: AB

TCP check is like a heartbeat check, too rough.

failexamonlyOptions: AC

read replica to reduce load. tcp check to see if ec2 is reachable

AWSPro1234

I agree with A and B .

Dgix

First of all: the instances are terminated because the load on the DB is too high. A: Best way to reduce the load on the DB. It doesn't notify admins, though, which means we then need either B or C (D and E do not notify admins). B: Health checks do not burden the site as they are done relatively seldom, so trying to reduce load by using a page that's lighter on the DB is not very relevant. Notifies admins. C: TCP checks are lighter on the load than HTTP checks, which means the already slight overhead for health checks is reduced further than in B. Notifies admins. This is preferable to B, but both feel inconsequential. D: Recovery actions in this situation are out of scope. This alternative is there to confuse. E: An alternative to A, but it has operational overhead in that the application must be changed to use the cache. A is more straightforward. Thus A and C.

vip2Options: BE

B and E works as expection. Due to web app is normal, A and C can not help CloudWatch alarm can not support so complicated action

9f02c8d

A & E is correct answer as the monitoring aspect is not part of the problem statement

Dgix

By the way, ExamTopics, we get a 503 when submitting voting comments. Please change my previous submission to that type, specifying A and C.