ExamQuestions.com

Register
Login
AWS Certified Solutions Architect Professional Exam Questions

Amazon

AWS Certified Solutions Architect Professional

183 / 465

Question 183:

You have developed a web application to collect monthly expense reports. As the nature of the application and looking at the usage statistics, it is mostly used around the last week of the month and the first week of the month. To increase the application performance, you added a caching layer in front of the application servers. So the reports are cached and served immediately. You started off with Elasticache Redis with a "cache.t2.small" node type. The application has been running fine. When looking at the performance activity into the CloudWatch, hardly 50% of the requests are served by the cache, and the cache cannot cope with additional content requirements. You want to improve the application with minimal changes and resources. Please select a valid option.

Answer options:

A.Modify the ElastiCache instance from t2 small to t2 medium, as t2 medium is more suitable for the given requirement.
B.Create a new ElastiCache instance with t2 micro, and terminate the t2 small instance.
C.Migrate the application to Elastic Beanstalk to use auto-scaling and set the desired and min capacity to 1, use the RDS and Cache layer of Beanstalk to save the cost.
D.Run the web application from S3 and serve with CloudFront.