You manage a Cloud SQL for PostgreSQL instance that is experiencing high read latency. You have already tuned the buffer cache and queries. Which THREE actions can further reduce read latency? (Choose three.)
More vCPUs can process more queries concurrently, reducing queue time.
Why this answer
Increasing the number of vCPUs on the primary instance (Option C) can reduce read latency by providing more CPU resources to process queries, especially if the current bottleneck is CPU-bound operations like query parsing, sorting, or aggregation. In Cloud SQL for PostgreSQL, scaling vCPUs also increases available memory and I/O bandwidth proportionally, which can alleviate contention and improve throughput for read-heavy workloads.
Exam trap
Candidates often mistakenly select diagnostic actions (like enabling logs) as a direct solution for latency reduction, but the question asks for actions that can directly reduce read latency.