
Ultimate access to all questions.
Deep dive into the quiz with AI chat providers.
We prepare a focused prompt with your quiz and certificate details so each AI can offer a more tailored, in-depth explanation.
A rapidly growing global ecommerce company is hosting its web application on AWS. The web application includes static content and dynamic content. The website stores online transaction processing (OLTP) data in an Amazon RDS database. The website's users are experiencing slow page loads.
Which combination of actions should a solutions architect take to resolve this issue? (Choose two.)
A
Configure an Amazon Redshift cluster.
B
Set up an Amazon CloudFront distribution.
C
Host the dynamic web content in Amazon S3.
D
Create a read replica for the RDS DB instance.
E
Configure a Multi-AZ deployment for the RDS DB instance.
Explanation:
Correct Answers: B and D
Why these are correct:
B. Set up an Amazon CloudFront distribution:
D. Create a read replica for the RDS DB instance:
Why other options are incorrect:
A. Configure an Amazon Redshift cluster: Redshift is for data warehousing and analytics, not for improving web application performance. It's designed for complex queries on large datasets, not OLTP workloads.
C. Host the dynamic web content in Amazon S3: S3 is excellent for static content but not suitable for dynamic content that requires server-side processing. Dynamic content should be served by application servers, not stored in S3.
E. Configure a Multi-AZ deployment for the RDS DB instance: Multi-AZ provides high availability and failover capabilities but doesn't directly improve performance. It's for disaster recovery, not performance optimization.
Additional considerations: