Manage read replicas Stay organized with collections Save and categorize content based on your preferences.
This page describes how to manage read replicas. These operations includedisabling and enabling replication, promoting a replica, configuring parallelreplication, and checking the replication status.
For more information about how replication works, seeReplication in Cloud SQL.
Disable replication
By default, a replica starts with replication enabled. However, you can disablereplication, for example, to debug or analyze the state of aninstance. When you are ready, you explicitly re-enable replication. Disabling orre-enabling replication doesn't restart the replica instance.
Disabling replication does not stop the replica instance; it becomes a read-onlyinstance that is no longer replicating from its primary instance. You continueto be charged for the instance. On the disabled replica, you can re-enablereplication, delete the replica, or promote the replica to a stand-aloneinstance.
When you disable the replication for an extended period of time, your disk storage requirements might increase. For example, your instance might accumulate transactional logs to let you resume replication when you re-enable replication. To avoid increasing disk storage requirements, instead of disabling replication for an extended period of time, consider promoting the replica or creating a clone of the primary instance.
To disable replication:
Console
In the Google Cloud console, go to theCloud SQL Instances page.
- Select a replica instance by clicking its name.
- ClickDisable replication in the button bar.
- ClickOK.
gcloud
gcloudsqlinstancespatchREPLICA_NAME\--no-enable-database-replicationREST v1
To execute this cURL command at a command line prompt, you acquire anaccess token by using thegcloud auth print-access-token command.You can also use the APIs Explorer on the Instances:patch page to send the REST API request.
Before using any of the request data, make the following replacements:
- project-id: The project ID
- replica-name: The name of the replica instance
HTTP method and URL:
PATCH https://sqladmin.googleapis.com/v1/projects/project-id/instances/replica-name
Request JSON body:
{ "settings": { "databaseReplicationEnabled": "False" }}To send your request, expand one of these options:
curl (Linux, macOS, or Cloud Shell)
Note: The following command assumes that you have logged in to thegcloud CLI with your user account by runninggcloud init orgcloud auth login , or by usingCloud Shell, which automatically logs you into thegcloud CLI . You can check the currently active account by runninggcloud auth list. Save the request body in a file namedrequest.json, and execute the following command:
curl -X PATCH \
-H "Authorization: Bearer $(gcloud auth print-access-token)" \
-H "Content-Type: application/json; charset=utf-8" \
-d @request.json \
"https://sqladmin.googleapis.com/v1/projects/project-id/instances/replica-name"
PowerShell (Windows)
Note: The following command assumes that you have logged in to thegcloud CLI with your user account by runninggcloud init orgcloud auth login . You can check the currently active account by runninggcloud auth list. Save the request body in a file namedrequest.json, and execute the following command:
$cred = gcloud auth print-access-token
$headers = @{ "Authorization" = "Bearer $cred" }
Invoke-WebRequest `
-Method PATCH `
-Headers $headers `
-ContentType: "application/json; charset=utf-8" `
-InFile request.json `
-Uri "https://sqladmin.googleapis.com/v1/projects/project-id/instances/replica-name" | Select-Object -Expand Content
You should receive a JSON response similar to the following:
Response
{ "kind": "sql#operation", "targetLink": "https://sqladmin.googleapis.com/v1/projects/project-id/instances/replica-name", "status": "PENDING", "user": "user@example.com", "insertTime": "2020-01-21T22:43:37.981Z", "operationType": "UPDATE", "name": "operation-id", "targetId": "replica-name", "selfLink": "https://sqladmin.googleapis.com/v1/projects/project-id/operations/operation-id", "targetProject": "project-id"}REST v1beta4
To execute this cURL command at a command line prompt, you acquire anaccess token by using thegcloud auth print-access-token command.You can also use the APIs Explorer on the Instances:patch page to send the REST API request.
Before using any of the request data, make the following replacements:
- project-id: The project ID
- replica-name: The name of the replica instance
HTTP method and URL:
PATCH https://sqladmin.googleapis.com/sql/v1beta4/projects/project-id/instances/replica-name
Request JSON body:
{ "settings": { "databaseReplicationEnabled": "False" }}To send your request, expand one of these options:
curl (Linux, macOS, or Cloud Shell)
Note: The following command assumes that you have logged in to thegcloud CLI with your user account by runninggcloud init orgcloud auth login , or by usingCloud Shell, which automatically logs you into thegcloud CLI . You can check the currently active account by runninggcloud auth list. Save the request body in a file namedrequest.json, and execute the following command:
curl -X PATCH \
-H "Authorization: Bearer $(gcloud auth print-access-token)" \
-H "Content-Type: application/json; charset=utf-8" \
-d @request.json \
"https://sqladmin.googleapis.com/sql/v1beta4/projects/project-id/instances/replica-name"
PowerShell (Windows)
Note: The following command assumes that you have logged in to thegcloud CLI with your user account by runninggcloud init orgcloud auth login . You can check the currently active account by runninggcloud auth list. Save the request body in a file namedrequest.json, and execute the following command:
$cred = gcloud auth print-access-token
$headers = @{ "Authorization" = "Bearer $cred" }
Invoke-WebRequest `
-Method PATCH `
-Headers $headers `
-ContentType: "application/json; charset=utf-8" `
-InFile request.json `
-Uri "https://sqladmin.googleapis.com/sql/v1beta4/projects/project-id/instances/replica-name" | Select-Object -Expand Content
You should receive a JSON response similar to the following:
Response
{ "kind": "sql#operation", "targetLink": "https://sqladmin.googleapis.com/sql/v1beta4/projects/project-id/instances/replica-name", "status": "PENDING", "user": "user@example.com", "insertTime": "2020-01-21T22:43:37.981Z", "operationType": "UPDATE", "name": "operation-id", "targetId": "replica-name", "selfLink": "https://sqladmin.googleapis.com/sql/v1beta4/projects/project-id/operations/operation-id", "targetProject": "project-id"}Enable replication
If a replica has not been replicating for a long time, it will take longerfor it to catch up to the primary instance. In this case, delete thereplica and create a new one.
To enable replication:
Console
In the Google Cloud console, go to theCloud SQL Instances page.
- Select a replica instance by clicking its name.
- ClickEnable replication.
- ClickOk.
gcloud
gcloudsqlinstancespatchREPLICA_NAME\--enable-database-replicationREST v1
To execute this cURL command at a command line prompt, you acquire anaccess token by using thegcloud auth print-access-token command.You can also use the APIs Explorer on the Instances:patch page to send the REST API request.
Before using any of the request data, make the following replacements:
- project-id: The project ID
- replica-name: The name of the replica instance
HTTP method and URL:
PATCH https://sqladmin.googleapis.com/v1/projects/project-id/instances/replica-name
Request JSON body:
{ "settings": { "databaseReplicationEnabled": "True" }}To send your request, expand one of these options:
curl (Linux, macOS, or Cloud Shell)
Note: The following command assumes that you have logged in to thegcloud CLI with your user account by runninggcloud init orgcloud auth login , or by usingCloud Shell, which automatically logs you into thegcloud CLI . You can check the currently active account by runninggcloud auth list. Save the request body in a file namedrequest.json, and execute the following command:
curl -X PATCH \
-H "Authorization: Bearer $(gcloud auth print-access-token)" \
-H "Content-Type: application/json; charset=utf-8" \
-d @request.json \
"https://sqladmin.googleapis.com/v1/projects/project-id/instances/replica-name"
PowerShell (Windows)
Note: The following command assumes that you have logged in to thegcloud CLI with your user account by runninggcloud init orgcloud auth login . You can check the currently active account by runninggcloud auth list. Save the request body in a file namedrequest.json, and execute the following command:
$cred = gcloud auth print-access-token
$headers = @{ "Authorization" = "Bearer $cred" }
Invoke-WebRequest `
-Method PATCH `
-Headers $headers `
-ContentType: "application/json; charset=utf-8" `
-InFile request.json `
-Uri "https://sqladmin.googleapis.com/v1/projects/project-id/instances/replica-name" | Select-Object -Expand Content
You should receive a JSON response similar to the following:
Response
{ "kind": "sql#operation", "targetLink": "https://sqladmin.googleapis.com/v1/projects/project-id/instances/replica-name", "status": "PENDING", "user": "user@example.com", "insertTime": "2020-01-21T22:43:37.981Z", "operationType": "UPDATE", "name": "operation-id", "targetId": "replica-name", "selfLink": "https://sqladmin.googleapis.com/v1/projects/project-id/operations/operation-id", "targetProject": "project-id"}REST v1beta4
To execute this cURL command at a command line prompt, you acquire anaccess token by using thegcloud auth print-access-token command.You can also use the APIs Explorer on the Instances:patch page to send the REST API request.
Before using any of the request data, make the following replacements:
- project-id: The project ID
- replica-name: The name of the replica instance
HTTP method and URL:
PATCH https://sqladmin.googleapis.com/sql/v1beta4/projects/project-id/instances/replica-name
Request JSON body:
{ "settings": { "databaseReplicationEnabled": "True" }}To send your request, expand one of these options:
curl (Linux, macOS, or Cloud Shell)
Note: The following command assumes that you have logged in to thegcloud CLI with your user account by runninggcloud init orgcloud auth login , or by usingCloud Shell, which automatically logs you into thegcloud CLI . You can check the currently active account by runninggcloud auth list. Save the request body in a file namedrequest.json, and execute the following command:
curl -X PATCH \
-H "Authorization: Bearer $(gcloud auth print-access-token)" \
-H "Content-Type: application/json; charset=utf-8" \
-d @request.json \
"https://sqladmin.googleapis.com/sql/v1beta4/projects/project-id/instances/replica-name"
PowerShell (Windows)
Note: The following command assumes that you have logged in to thegcloud CLI with your user account by runninggcloud init orgcloud auth login . You can check the currently active account by runninggcloud auth list. Save the request body in a file namedrequest.json, and execute the following command:
$cred = gcloud auth print-access-token
$headers = @{ "Authorization" = "Bearer $cred" }
Invoke-WebRequest `
-Method PATCH `
-Headers $headers `
-ContentType: "application/json; charset=utf-8" `
-InFile request.json `
-Uri "https://sqladmin.googleapis.com/sql/v1beta4/projects/project-id/instances/replica-name" | Select-Object -Expand Content
You should receive a JSON response similar to the following:
Response
{ "kind": "sql#operation", "targetLink": "https://sqladmin.googleapis.com/sql/v1beta4/projects/project-id/instances/replica-name", "status": "PENDING", "user": "user@example.com", "insertTime": "2020-01-21T22:43:37.981Z", "operationType": "UPDATE", "name": "operation-id", "targetId": "replica-name", "selfLink": "https://sqladmin.googleapis.com/sql/v1beta4/projects/project-id/operations/operation-id", "targetProject": "project-id"}Promote a replica
Promoting a read replica stops replication and converts the instance to astandalone Cloud SQL primary instance with read and write capabilities.
When promoted, read replicas are automatically configured with backups, but theyaren't automatically configured as high availability (HA) instances. You canenable high availability after promoting the replica just as you would for anynon-replica instance. Configuring a read replica for high availability is done the sameway as for a primary instance. Learn moreaboutconfiguring the instance for high availability.
SeePromotingreplicas for regional migration or disaster recovery to learn more aboutuse cases for cross-region replicas.Before promoting a read replica, if the primary is still available and servingclients, you should do the following:
- Stop all writes to the primary instance.
- Check the replication status of the replica (follow the instructions in thepsql Client tab).
- Verify that the replica is replicating, and then wait until the replication lag reported by the
replay_lagmetric is 0.
Otherwise, a newly promoted instance may be missing some transactions that werecommitted to the primary instance.
To promote a replica to a standalone instance:
Console
In the Google Cloud console, go to theCloud SQL Instances page.
- Select a replica instance by clicking its name.
- ClickPromote replica.
- ClickOk.
gcloud
gcloudsqlinstancespromote-replicaREPLICA_NAME
REST v1
To execute this cURL command at a command line prompt, you acquire anaccess token by using thegcloud auth print-access-token command.You can also use the APIs Explorer on the Instances:promoteReplica page to send the REST API request.
Before using any of the request data, make the following replacements:
- project-id: The project ID
- replica-name: The name of the replica instance
HTTP method and URL:
POST https://sqladmin.googleapis.com/v1/projects/project-id/instances/replica-name/promoteReplica
To send your request, expand one of these options:
curl (Linux, macOS, or Cloud Shell)
Note: The following command assumes that you have logged in to thegcloud CLI with your user account by runninggcloud init orgcloud auth login , or by usingCloud Shell, which automatically logs you into thegcloud CLI . You can check the currently active account by runninggcloud auth list.Execute the following command:
curl -X POST \
-H "Authorization: Bearer $(gcloud auth print-access-token)" \
-H "Content-Type: application/json; charset=utf-8" \
-d "" \
"https://sqladmin.googleapis.com/v1/projects/project-id/instances/replica-name/promoteReplica"
PowerShell (Windows)
Note: The following command assumes that you have logged in to thegcloud CLI with your user account by runninggcloud init orgcloud auth login . You can check the currently active account by runninggcloud auth list.Execute the following command:
$cred = gcloud auth print-access-token
$headers = @{ "Authorization" = "Bearer $cred" }
Invoke-WebRequest `
-Method POST `
-Headers $headers `
-Uri "https://sqladmin.googleapis.com/v1/projects/project-id/instances/replica-name/promoteReplica" | Select-Object -Expand Content
You should receive a JSON response similar to the following:
Response
{ "kind": "sql#operation", "targetLink": "https://sqladmin.googleapis.com/v1/projects/project-id/instances/replica-name", "status": "PENDING", "user": "user@example.com", "insertTime": "2020-01-21T22:43:37.981Z", "operationType": "PROMOTE_REPLICA", "name": "operation-id", "targetId": "replica-name", "selfLink": "https://sqladmin.googleapis.com/v1/projects/project-id/operations/operation-id", "targetProject": "project-id"}REST v1beta4
To execute this cURL command at a command line prompt, you acquire anaccess token by using thegcloud auth print-access-token command.You can also use the APIs Explorer on the Instances:promoteReplica page to send the REST API request.
Before using any of the request data, make the following replacements:
- project-id: The project ID
- replica-name: The name of the replica instance
HTTP method and URL:
POST https://sqladmin.googleapis.com/sql/v1beta4/projects/project-id/instances/replica-name/promoteReplica
To send your request, expand one of these options:
curl (Linux, macOS, or Cloud Shell)
Note: The following command assumes that you have logged in to thegcloud CLI with your user account by runninggcloud init orgcloud auth login , or by usingCloud Shell, which automatically logs you into thegcloud CLI . You can check the currently active account by runninggcloud auth list.Execute the following command:
curl -X POST \
-H "Authorization: Bearer $(gcloud auth print-access-token)" \
-H "Content-Type: application/json; charset=utf-8" \
-d "" \
"https://sqladmin.googleapis.com/sql/v1beta4/projects/project-id/instances/replica-name/promoteReplica"
PowerShell (Windows)
Note: The following command assumes that you have logged in to thegcloud CLI with your user account by runninggcloud init orgcloud auth login . You can check the currently active account by runninggcloud auth list.Execute the following command:
$cred = gcloud auth print-access-token
$headers = @{ "Authorization" = "Bearer $cred" }
Invoke-WebRequest `
-Method POST `
-Headers $headers `
-Uri "https://sqladmin.googleapis.com/sql/v1beta4/projects/project-id/instances/replica-name/promoteReplica" | Select-Object -Expand Content
You should receive a JSON response similar to the following:
Response
{ "kind": "sql#operation", "targetLink": "https://sqladmin.googleapis.com/sql/v1beta4/projects/project-id/instances/replica-name", "status": "PENDING", "user": "user@example.com", "insertTime": "2020-01-21T22:43:37.981Z", "operationType": "PROMOTE_REPLICA", "name": "operation-id", "targetId": "replica-name", "selfLink": "https://sqladmin.googleapis.com/sql/v1beta4/projects/project-id/operations/operation-id", "targetProject": "project-id"}Confirm that the promoted instance is configured correctly.In particular, considerconfiguring the instance for high availability if needed.
Check replication status
When you view a replica instance using the Google Cloud console or log into theinstance using an administration client, you get details about replication,including status and metrics. When you use thegcloud CLI, youget a brief summary of the replication configuration.
Before checking the replication status for a Cloud SQL replica instance,use thegcloud sql instances describe command to displaythe status of the instance. As a result, you can see whether replication is enabled for the replica instance.
The following metrics are available for replica instances.(Learn moreabout additional metrics available for all instances, including non-replicainstances.)
| Metric | Description |
|---|---|
| Replication State ( cloudsql.googleapis.com) | Indicates whether replication is actively streaming logs from the primary to the replica. Possible values are:
This metric reports
For more information, seeThe Statistics Collector andSystem Administration Functions in the PostgreSQL Reference Manual. |
| Replication Lag ( cloudsql.googleapis.com) | The amount of time that the replica's state is lagging behind the state of the primary instance. This is the difference between (1) the current time and (2) the original timestamp at which the primary committed the transaction that is currently being applied on the replica. In particular, writes may be counted as lagging even if they have been received by the replica, if the replica has not yet applied the write to the database. For cascading replicas, each primary-replica pair is monitored separately and there's no single metric that yields the end-to-end (primary to replica) lag. For more information, seeReplication lag. |
| Lag Bytes ( cloudsql.googleapis.com) | Reports the number of bytes by which the read replica lags the primary. Four time series are produced for each replica, showing the number of bytes in the primary's write-ahead log that have not yet been…
These metrics serve different purposes; for example, These metrics are computed by comparing |
| Max Lag Bytes ( cloudsql.googleapis.com) | Fora replica of an external primary, reports the maximum replication lag (in bytes) over all databases that are being replicated to this instance. For each database, this is defined as the number of bytes in the primary's write-ahead log that have not been confirmed to be received by the replica. This metric is computed by sending a query to the primary to compare |
To check replication status:
Console
Cloud SQL reports theReplication State metric on thedefault Cloud SQL monitoring dashboard.
To view other metrics for in-region and cross-region replicas, and replicas of external servers, create a custom dashboard and add the metrics you wish to monitor to it:
In the Google Cloud console, go to theMonitoring page.
- Select theDashboards tab.
- ClickCreate dashboard.
- Give the dashboard a name and click OK.
- ClickAdd chart.
- ForResource Type selectCloud SQL Database.
- Do any of the following:
- To monitor the replication state metric: in theSelect a metric field, type
Replication state. Then add a filter forstate = "Running". The chart shows 1 if replication is running and 0 otherwise. - To monitor the replication lag, in bytes, for a read replica: in theSelect a metric field, type
Lag Bytes. Then add a filter onreplica_lag_type = "replay_location". The chart shows the number of bytes associated with transactions that have been committed on the primary but have not yet been replayed on the replica. - To monitor the replication lag, in bytes, for a replica of an external primary: in theSelect a metric field, type
Max Lag Bytes. The chart shows the number of bytes associated with transactions that have been committed on the primary but have not yet been confirmed received by the replica.
gcloud
For a replica instance, check the replication status with:
gcloudsqlinstancesdescribeREPLICA_NAME
In the output, look for the propertiesdatabaseReplicationEnabled andmasterInstanceName.
For a primary instance, check if there are replicas with:
gcloudsqlinstancesdescribePRIMARY_INSTANCE_NAME
In the output, look for the propertyreplicaNames.
psql Client
Some replication status metrics are produced by the primary and some are produced by the replica. For the following steps, connect to the replica or primary instance (as directed below) with a PostgreSQL client.
For information, seeConnection options for external applications.
- To check the replica's statusfrom the primary instance:
Look for the following metrics in the output of the command:select*frompg_stat_replication;
client_addr: The IP address of the replica instance.state: Indicates whether the SQL thread for executing events in the relay log is running. The value isstreamingwhen replication is started.replay_lag: The number of bytes that the replica SQL thread is behind the primary instance. The value isOor a small number of bytes.
- To check the replica's statusfrom the replica instance:
select*frompg_stat_wal_receiver;
Look for the following metrics in the output of the command:
sender_host: The IP address of the primary instance.status: Indicates whether the SQL thread for executing events in the relay log is running. The value isstreamingwhen replication is started.last_msg_send_timeandlast_msg_receipt_time: The difference between these two timestamps is the lag time.
To check whether replication has been paused:
selectpg_is_wal_replay_paused();
The value is
tif replication is paused andfotherwise.To check whether there are transactions that have been received from the primary but not yet applied:
#forPostgreSQL9.6selectpg_catalog.pg_last_xlog_receive_location(),pg_catalog.pg_last_xlog_replay_location();#forPostgreSQL10andaboveselectpg_catalog.pg_last_wal_receive_lsn(),pg_catalog.pg_last_wal_replay_lsn();
If the two values are equal, then the replica has processed all of the transactions it has received from the primary.
Troubleshoot
| Issue | Troubleshooting |
|---|---|
| Read replica didn't start replicating on creation. | There's probably a more specific error in the log files.Inspect the logs in Cloud Logging to find the actual error. |
| Unable to create read replica - invalidFlagValue error. | One of the flags in the request is invalid. It could be a flag you provided explicitly or one that was set to a default value. First, check that the value of the If the |
| Unable to create read replica - unknown error. | There's probably a more specific error in the log files.Inspect the logs in Cloud Logging to find the actual error. If the error is: |
| Disk is full. | The primary instance disk size can become full during replica creation. Edit the primary instance to upgrade it to a larger disk size. |
| Disk space increases significantly. | A slot that's not actively used to track data causes PostgreSQL tohold onto WAL segments indefinitely, causing the disk space to grow indefinitely. If you usethelogical replication and decoding features in Cloud SQL, replication slots are created and dropped automatically. Unused replication slots can be detected by querying thepg_replication_slotssystem view and filtering on theactive column. Unusedslots can be dropped to remove WAL segments using thepg_drop_replication_slot command. |
| The replica instance is using too much memory. | The replica uses temporary memory to cache often-requested read operations, which can lead it to use more memory than the primary instance. Restart the replica instance to reclaim the temporary memory space. |
| Replication stopped. | The maximum storage limit was reached and automatic storage increase isn't enabled. Edit the instance to enable |
| Replication lag is consistently high. | The write load is too high for the replica to handle. Replication lag takes place when the SQL thread on a replica is unable to keep up with the IO thread. Some kinds of queries or workloads can cause temporary or permanent high replication lag for a given schema. Some of the typical causes of replication lag are:
Some possible solutions include:
|
| Errors when rebuilding indexes in PostgreSQL 9.6. | You get an error from PostgreSQL informing you that you need to rebuild a particular index. This can be done only on the primary instance. If you create a new replica instance, you soon get the same error again.Hash indexes are not propagated to replicas in PostgreSQL versions below 10. If you must use hash indexes, upgrade to PostgreSQL 10+. Otherwise, if you also want to use replicas, don't use hash indexes in PostgreSQL 9.6. |
| Query on the primary instance is always running. | After creating a replica, the querySELECT * from pg_stat_activity where state = 'active' and pid = XXXX and username = 'cloudsqlreplica' is expected to run continuously on your primary instance. |
| Replica creation fails with timeout. | Long-running uncommitted transactions on the primary instance can cause read replica creation to fail. Recreate the replica after stopping all running queries. |
| If the primary instance and the replica havedifferent vCPU sizes, then there might be query performance issues because the query optimizer takes vCPU sizes into account. | To resolve this issue, complete the following steps:
If this is a specific query, then modify the query. For example, you can change the order of the joins to see if you get better performance. |
What's next
- Learn how tocreate a read replica.
- Learn more aboutrequirements and best practices for replication.
Except as otherwise noted, the content of this page is licensed under theCreative Commons Attribution 4.0 License, and code samples are licensed under theApache 2.0 License. For details, see theGoogle Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2025-12-17 UTC.