A company is running a production database on Amazon RDS for PostgreSQL. The database experiences high read traffic from multiple application servers. Which data store management strategy would reduce the load on the primary database instance?
Read Replicas allow offloading read queries, reducing load on the primary.
Why this answer
Option B is correct because using RDS Read Replicas offloads read queries from the primary instance. Option A is incorrect because Multi-AZ is for high availability, not read scaling. Option C is incorrect because ElastiCache is a caching layer, not a replica.
Option D is incorrect because DynamoDB Accelerator is for DynamoDB, not RDS.