
Answer-first summary for fast verification
Answer: Implement Amazon ElastiCache for Memcached to manage session data and use Amazon RDS for the MySQL database to store application data.
The correct answer is B. This approach leverages Amazon ElastiCache for Memcached to efficiently handle and manage session data, which reduces the memory burden on the web server. Additionally, using Amazon RDS for MySQL ensures that the application data is stored in a scalable, managed database service. This combination significantly improves the scalability and performance of the application in a high traffic environment.
Author: LeetQuiz Editorial Team
Ultimate access to all questions.
An online retail application requires migration to AWS due to increasing traffic. The current setup includes a web server handling sessions in memory and a separate MySQL database server. High traffic leads to memory overload and performance issues, primarily due to session management. The developer plans to migrate the web server using EC2 instances with Auto Scaling and an Application Load Balancer. What changes should be made to enhance performance?
A
Migrate the MySQL database to an EC2 instance and store both session and application data in it.
B
Implement Amazon ElastiCache for Memcached to manage session data and use Amazon RDS for the MySQL database to store application data.
C
Utilize Amazon ElastiCache for Memcached for both session and application data storage.
D
Manage session data with the EC2 instance store and store application data in an Amazon RDS MySQL database.
No comments yet.