
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.
An application allows users at a company's headquarters to access product data. The product data is stored in an Amazon RDS MySQL DB instance. The operations team has isolated an application performance slowdown and wants to separate read traffic from write traffic. A solutions architect needs to optimize the application's performance quickly.
What should the solutions architect recommend?
A
Change the existing database to a Multi-AZ deployment. Serve the read requests from the primary Availability Zone.
B
Change the existing database to a Multi-AZ deployment. Serve the read requests from the secondary Availability Zone.
C
Create read replicas for the database. Configure the read replicas with half of the compute and storage resources as the source database.
D
Create read replicas for the database. Configure the read replicas with the same compute and storage resources as the source database.
Explanation:
Correct Answer: D
Why Option D is correct:
Read Replicas for Read/Write Separation: Amazon RDS Read Replicas are specifically designed to offload read traffic from the primary database instance. This allows you to separate read and write operations, which is exactly what the operations team wants to achieve.
Same Compute and Storage Resources: When creating read replicas for performance optimization, it's recommended to configure them with the same compute and storage resources as the source database to ensure they can handle the read workload effectively. Using half the resources (Option C) could lead to performance bottlenecks.
Quick Implementation: Read replicas can be created relatively quickly compared to other architectural changes, meeting the requirement to "optimize the application's performance quickly."
Why other options are incorrect:
Option A & B (Multi-AZ deployments):
Option C (Half resources):
Key AWS Concepts:
Best Practice: When creating read replicas for performance optimization, match the instance type and storage to the source database to ensure they can handle the redirected read traffic without performance degradation.