Configure external replicas

MySQL  |  PostgreSQL  |  SQL Server

This page describes how to configure a Cloud SQL instance that replicatesto one or more replicas external to Cloud SQL, and how to demote theprimary instance in an external replica configuration to reverse theconfiguration.

For more information about replication, seeAbout replication in Cloud SQL.

Set up the external replica configuration

Before you begin

Before you start this task, you must have a Cloud SQL instance and anexternal MySQL instance that meets therequirements for externalreplicas.

Source instance requirements

The source instance for an external read replica must be a primary or standaloneinstance. You can't use a Cloud SQL read replica as the source instancefor an external read replica. Read replicas are sometimes recreated from the diskclone of their primary instance and their replication state to an external readreplica can't be maintained by the read replica.

Configure the primary instance

  1. Go to theCloud SQL Instances page in the Google Cloud console.
  2. Enable access on the primary instance for the IP address of the external replica.

    For information about enabling IP access, seeConfiguring access for IP connections.

  3. Record the public IP address and the public outgoing IP address of the primary instance for later use. You can find these values on the instance'sOverview page.
  4. Click the Cloud Shell icon in the upper right corner.
  5. At the Cloud Shell prompt, use the built-in MySQL client to connect to your primary instance:
    gcloudsqlconnectPRIMARY_INSTANCE_NAME\--user=root
  6. Enter your root password. You should then see the mysql prompt.
  7. Create a special user for replication and grant replication privileges:
    CREATEUSER'REPLICATION_USER'@'%'IDENTIFIEDBY'REPLICATION_USER_PASSWORD';GRANTREPLICATIONSLAVEON*.*TO'REPLICATION_USER'@'%';
  8. If you are starting with a new database, create the same database and tables on both the primary and replica instances. For example:
    CREATEDATABASEtest;USEtest;CREATETABLEreplica_test(idSERIALPRIMARYKEY,datatext);INSERTINTOreplica_test(data)VALUES('apple'),('banana'),('cherry');
  9. If you already have a database on the primary instance, you must create the same on the replica. To do this, export the database from the primary instance to a Cloud Storage bucket and import it into the replica. Learn more about Exporting data from Cloud SQL to a SQL dump file in Cloud Storage.

Configure the external replica

Warning: This procedure overwrites any data hosted in a MySQL database onthe replica, including users and passwords, with the settings and data from theprimary instance.
  1. On the machine hosting the replica, seed your new external MySQL instance with the export file you created from the primary instance.

    For example, the following command loads an exported file namedmydump.sql:

    mysql --user=root --password < mydump.sql
  2. Determine the server ID for this replica-primary pair.

    The server ID is a numeric value (for example, "3") that must be unique across the external replica configuration (each replica must have a unique server ID).

  3. Add the following options to the replica'smy.cnf option file:
    [mysqld]server-id=[SERVER_ID]gtid_mode=ONenforce_gtid_consistency=ONlog_slave_updates=ONreplicate-ignore-db=mysqlbinlog-format=ROWlog_bin=mysql-binexpire_logs_days=1read_only=ON
    Note:You must setgtid_mode=ON for all externalreplicas in a configuration that includes a Cloud SQL primary instance. Changing thedefault togtid_mode=OFF causes replication with the external serverto fail.

    For more information about MySQL replication options, seeReplication and Binary Logging Options.

  4. Restart themysqld process to cause the configuration fileto be read.
  5. In amysql client on the replica, enter the following command:
    CHANGE MASTER TO MASTER_HOST='MASTER_IP_ADDRESS', MASTER_USER='REPLICATION_USER',MASTER_PASSWORD='REPLICATION_PASSWORD', MASTER_AUTO_POSITION=1;
  6. Start replication on the replica:
    START SLAVE;
  7. Confirm replication status:

    SHOW SLAVE STATUS\G;

    If you see "Waiting for master to send event", replication is working.

Demote the primary instance of an external replica

When you have a Cloud SQL instance with an external replica, you canreverse the configuration, which causes these changes to happen:

  • The external replica becomes the new primary instance.
  • The Cloud SQL instance becomes a read replica, replicating from theserver that was previously the external replica (now called the sourcedatabase server).

To reverse the external replica configuration:

  1. Create asource representation instance.

    This instance will represent the source database server to the Cloud SQL replica after the demotion operation completes.

    gcloud auth loginACCESS_TOKEN="$(gcloud auth print-access-token)"curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \     --header 'Content-Type: application/json' \     --data '{         "name": "SOURCE_REPRESENTATION_NAME",         "region": "REGION",         "databaseVersion": "EXTERNAL_SERVER_DATABASE_VERSION",         "onPremisesConfiguration": {             "hostPort": "EXTERNAL_SERVER_IP:EXTERNAL_SERVER_PORT"         }     }' \     -X POST \     https://sqladmin.googleapis.com/sql/v1beta4/projects/PROJECT-ID/instances

    Use the region where you want your Cloud SQL replica to reside.

  2. Start the demotion process.

    Because this API call requires you to provide sensitive information, you shoulduse a JSON fileto provide your data to cURL, rather than providing it on the command line.

    Create the data file:

    {    "demoteMasterContext": {        "replicaConfiguration": {            "mysqlReplicaConfiguration": {                "username": "REPLICATION_USERNAME",                "password": "PASSWORD",                "caCertificate": "EXTERNAL_SERVER_CA",                "clientCertificate": "CLIENT_CERT",                "clientKey": "PRIVATE_KEY"            }        },        "masterInstanceName": "SOURCE_REPRESENTATION_NAME",    },}

    Then, call the API.

    curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \     --header 'Content-Type: application/json' \     --data @PATH_TO_DATA_FILE \     https://sqladmin.googleapis.com/sql/v1beta4/projects/PROJECT-ID/instances/INSTANCE_NAME/demoteMaster

    For more information about your options for SSL/TLS, seeSSL/TLS options. For more information about the properties used by thereplicaConfiguration object, see Replicating from an External Server.

  3. Wait for the external replica to complete all pending transactions from the primary instance.

    When the replica is caught up, theSHOW SLAVE STATUS command will showSeconds Behind Master as 0, and theExecuted_Gtid_Set value will be identical between the external replica and the Cloud SQL primary.

  4. Use themysql client to stop replication on the external replica:

    STOP SLAVERESET SLAVE ALL
  5. Wait for the Cloud SQL instance to start replicating from the external server, which is now the source database server.

    Running theSHOW SLAVE STATUS command on the Cloud SQL instance provides replication status.

  6. When the Cloud SQL instance is successfully replicating from the source database server, set theread_only flag on the source database server tooff and update your applications to point to the source database server.
Important: If the Cloud SQL instance being demoted has existing read replicas andgtid_mode is set toOFF in the external primary, these replicas are not supported after the demotion. You can delete such replicas before you demote your instance or changegtid_mode toON in your external primary before you demote.

Troubleshoot

IssueTroubleshooting
Error message:The slave is connecting ... master has purged binary logs containing GTIDs that the slave requires.The primary Cloud SQL instance has automatic backups and binary logs and point-in-time recovery is enabled, so it should have enough logs for the replica to be able to catch up. However, in this case although the binary logs exist, the replica doesn't know which row to start reading from.

Create a new dump file using the correct flag settings, and configure the external replica using that file

  1. Connect to your mysql clientthrough a Compute Engine instance.
  2. Run mysqldump and use the--master-data=1 and--flush-privileges flags.

    Important: Do not include the--set-gtid-purged=OFF flag.

    Learn more.

  3. Ensure that the dump file just created contains theSET @@GLOBAL.GTID_PURGED='...' line.
  4. Upload the dump file to a Cloud Storage bucket and configure the replica using the dump file.

What's next

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.