A company is migrating a MySQL OLTP database to Cloud SQL. The database has a peak of 10,000 read queries per second (QPS) and 2,000 write QPS. The team wants to reduce read latency and offload read traffic from the primary instance. Which TWO actions should they take? (Choose TWO.)
Read replicas serve read traffic, reducing load on the primary and decreasing read latency.
Why this answer
Cloud SQL supports read replicas (up to 10) that can serve read traffic, offloading the primary. Cross-region replicas increase latency. Using a Memorystore cache reduces repeated reads.
Increasing primary machine type does not offload reads; it just scales the primary. Enabling automatic storage increase is for storage, not read performance.