Cloud Digital Leader Fundamental Cloud Concepts Practice Question
A company is using Cloud SQL for MySQL and notices that read queries are becoming slow as the application scales. They want to offload read traffic from the primary instance to improve performance. Which Cloud SQL feature should they enable?
Answer choices
Why each option matters
Answer the question above first, then reveal the full breakdown to understand why each option is right or wrong.
Correct answer & explanation
✓
Read replicas
Cloud SQL read replicas are read-only copies of the primary instance that can serve read traffic, reducing load on the primary and improving query performance.
Answer analysis
Option-by-option breakdown
For each option: why learners choose it and why it is or isn't the right answer here.
- ✗
Automatic failover replicas
Why it's wrong here
Automatic failover replicas are a high-availability feature: they maintain a standby instance that is promoted to primary only if the original primary fails. During normal operation, the failover replica does not accept any traffic, including read queries, so it cannot offload or distribute read load from the primary instance.
- ✗
Connection pooling
Why it's wrong here
Connection pooling is a client-side or proxy-level technique that reuses existing database connections to reduce connection overhead, such as handshake time and memory usage. It does not change which instance executes the queries—all connections still target the same primary instance—so it does not separate read workloads from the primary or provide additional read throughput.
- ✗
Point-in-time recovery
Why it's wrong here
Point-in-time recovery (PITR) is a backup and restore capability that allows you to recover a database to a specific timestamp using binary log files. It is purely an operational data-protection feature and has no effect on runtime query performance or on where queries are executed, so it cannot help with scaling read traffic.
- ✓
Read replicas
Why this is correct
Read replicas are asynchronous copies of the primary instance that support only read-only traffic. By routing SELECT queries to read replicas, you reduce the read load on the primary and increase overall scalability. This is the correct approach for offloading reads, though applications must be configured to use the replica endpoints, and data may experience a slight replication lag.
Go deeper
Related to this question
Learn chapter
Cloud Digital Transformation
Key term
SQL
SQL is a standardized programming language used to manage and manipulate relational databases, enabling querying, updating, and data retrieval.
Key term
Cloud SQL
Cloud SQL is a fully managed relational database service that lets you set up, maintain, and scale SQL databases (like MySQL, PostgreSQL, and SQL Server) in the cloud without managing the underlying infrastructure.
About these practice questions
This GCDL question is part of Courseiva's 829-question bank — original exam-style content with full explanations and wrong-answer analysis, never real exam questions or exam dumps. Learn why practice questions differ from exam dumps →
JA
Written by Johnson Ajibi, MSc IT Security
Senior Network & Security Engineer · founder of Courseiva
This GCDL practice question is part of Courseiva's free Google Cloud certification practice question bank. Courseiva provides original exam-style practice questions with explanations, topic-based practice, mock exams, readiness tracking, and study analytics to help learners prepare for the GCDL exam.