Cloud SQL for MySQL supports multiple minor versions of MySQL 8.0 and provisions MySQL 8.0 instances on the default minor version, which is one minor version earlier than the latest minor version.
With each new minor version, database providers release new features, security patches, bug fixes, and performance improvements.
MySQL 8.0 doesn't support downgrading.
Automatic upgrade
Cloud SQL supports the automatic minor version upgrade of Cloud SQL for MySQL 8.0 instances that are running MySQL version 8.0.35 or later.
When automatic minor version upgrade is enabled, a Cloud SQL for MySQL 8.0 instance is upgraded automatically to the default minor version of Cloud SQL for MySQL 8.0 during its regularly scheduled maintenance update . You're no longer required to perform minor version upgrades manually to keep your Cloud SQL for MySQL instance up-to-date with the latest security patches and bug fixes released by the MySQL community.
Automatic minor version upgrade occurs only during regularly scheduled maintenance events, not during self-service maintenance.
Enable automatic upgrade for new instances
When creating a new Cloud SQL for MySQL 8.0 instance, consider the following regarding automatic minor version upgrades:
-
If you create a new Cloud SQL for MySQL 8.0 instance without selecting a minor version, then the instance is enabled with automatic minor version upgrade by default.
-
If you create a Cloud SQL for MySQL 8.0 instance and select a minor version of 8.0.35 or later, then you can enable automatic minor version upgrade during its creation.
-
If you create a Cloud SQL for MySQL 8.0 instance and select a minor version of 8.0.34 or earlier, then you can't enable automatic minor version upgrade. You must perform a manual minor version upgrade of the instance.
Enable automatic upgrade for existing instances
If your existing instance is already installed with Cloud SQL for MySQL 8.0.35 or later, then you can enable automatic minor upgrade for your instance.
Use the following steps to enable automatic upgrades on an existing MySQL 8.0 instance. This procedure doesn't upgrade your instance. The instance will receive automatic minor version upgrades during its next scheduled maintenance event.
Console
To enable MySQL 8.0 automatic upgrades for an existing instance, do the following:
-
In the Google Cloud console, go to the Cloud SQL Instances page.
- To open the Overview page of an instance, click the instance name.
- Click Edit .
- In the Customize your instance section, select Enable automatic minor version upgrades .
- Click Save .
gcloud
To enable MySQL 8.0 automatic upgrades for an existing instance, do the following:
- Run the following command:
- Check the metadata of the instance by running the following command:
gcloud sql instances patch INSTANCE_NAME \ --enable-auto-upgrade-minor-version
Replace INSTANCE_NAME with the name of the instance.
gcloud sql instances describe INSTANCE_NAME
Replace INSTANCE_NAME with the name of the instance.
In the output, look for the DatabaseType
field, and verify
that the value is updated to MYSQL_8_0
.
Check for automatic minor upgrade enablement
To check whether your instance is enabled for automatic minor version upgrade, run the following command:
gcloud sql instances describe INSTANCE_NAME \ --project= PROJECT_ID
Replace INSTANCE_NAME with the name of the instance and PROJECT_ID with the project ID of the instance. In the output of the command, locate the following fields.
-
databaseVersion: the value must beMYSQL_8_0 -
databaseInstalledVersion: the value must be a minor version equal or greater thanMYSQL_8_0_35
Manual upgrade
This section describes how to upgrade the minor version of a Cloud SQL for MySQL 8.0 instance manually. If you're running a Cloud SQL for MySQL version 8.0.34 or earlier, then you must upgrade the minor version of Cloud SQL for MySQL manually.
Before upgrading to a new MySQL 8.0 minor version, familiarize yourself with the changes. See MySQL 8.0 Release Notes . If you use Cloud SQL for MySQL 5.6 or 5.7, Cloud SQL automatically manages your instance's minor version. When you provision a new instance, Cloud SQL automatically configures your instance with the latest database version available. During routine maintenance, Cloud SQL automatically upgrades your instance to the latest supported version.
To upgrade the database minor version of your MySQL 8.0 instance, you need to update the instance with your preferred minor version, which must be greater than the installed minor version. You can't revert to an unspecified minor version after an instance has been provisioned.
If you're running a Cloud SQL Enterprise Plus edition instance, then the minor version upgrade completes with near-zero downtime .
Before you upgrade manually
Cloud SQL supports minor version upgrade for MySQL 8.0 instances. MySQL 8.0 doesn't allow downgrades. So, before you upgrade your primary instance, follow these steps to ensure that your data is safe.
-
Choose the target minor version of the database.
gcloud
For information about installing and getting started with the gcloud CLI, see Install the gcloud CLI . For information about starting Cloud Shell, see Use Cloud Shell .
To check which minor versions of the database are available for an in-place upgrade, do the following:
- Run the following command.
- In the output of the command,
locate the section that is labeled
upgradableDatabaseVersions. - Each subsection returns a database version that is available for upgrade. In each subsection, review the following field.
-
name: the database version string that includes the database major and minor version that you can target for the Cloud SQL for MySQL minor version in-place upgrade.
gcloud sql instances describe INSTANCE_NAMEReplace INSTANCE_NAME with the name of the instance.
REST v1
To check which minor versions of the database are available for an in-place upgrade, use the
instances.getmethod of the Cloud SQL Admin API.Before using any of the request data, make the following replacements:
- INSTANCE_NAME : The instance name.
HTTP method and URL:
GET https://sqladmin.googleapis.com/v1/projects/ PROJECT_ID /instances/ INSTANCE_NAME
To send your request, expand one of these options:
You should receive a JSON response similar to the following:
upgradableDatabaseVersions: { major_version: "MYSQL_8_0" name: "MYSQL_8_0_36" display_name: "MySQL 8.0.36" }REST v1beta4
To check which minor versions of the database are available for an in-place upgrade, use the
instances.getmethod of the Cloud SQL Admin API.Before using any of the request data, make the following replacements:
- INSTANCE_NAME : The instance name.
HTTP method and URL:
GET https://sqladmin.googleapis.com/sql/v1beta4/projects/ PROJECT_ID /instances/ INSTANCE_NAME
To send your request, expand one of these options:
You should receive a JSON response similar to the following:
upgradableDatabaseVersions: { major_version: "MYSQL_8_0" name: "MYSQL_8_0_36" display_name: "MySQL 8.0.36" }For the complete list of the database versions that Cloud SQL supports, see Database versions and version policies .
-
Test your upgrade in a staging environment.
-
Create a clone of your production instance to serve as a staging instance. This creates a new database instance, with the same major and minor versions.
-
Perform a minor version upgrade on the staging instance.
-
Run workload tests to verify that the upgrade was successful and that your application performs as expected. When testing is successful, proceed to upgrade your read replica instances.
-
-
Upgrade your read replica instances.
-
Upgrade all read replicas in the database to the target minor version.
-
Verify that your application works as expected.
-
-
Back up your primary instance.
As with any significant database update, make a backup of your primary instance.
Upgrade the minor version
You can specify the database minor version of an existing instance by using gcloud
or
the REST API. Perform minor version upgrades at a time when the database isn't in
use. If your instance requires a restart, then as a result, your
instance experiences some downtime. Cloud SQL Enterprise Plus edition instances
experience near-zero downtime.
If the installed version is higher than the requested version,
then the request is rejected.
gcloud
Use the gcloud sql instances patch
command
with the --database-version
flag.
Replace the following variables before running the command:
- INSTANCE_NAME : The name of the instance.
- DATABASE_VERSION : The database version of the instance. If you don't specify this flag, the default major version is used.
gcloud sql instances patch INSTANCE_NAME \ --database-version = DATABASE_VERSION
REST v1
Use a PATCH request with the instances:patch
method and the databaseVersion
flag.
Before using any of the request data, make the following replacements:
- PROJECT_ID : The project ID
- INSTANCE_ID : The instance ID
- DATABASE_VERSION : The database version to upgrade to.
HTTP method and URL:
PATCH https://sqladmin.googleapis.com/v1/projects/ PROJECT_ID /instances/ INSTANCE_ID
Request JSON body:
{ "databaseVersion": " DATABASE_VERSION " }
To send your request, expand one of these options:
You should receive a JSON response similar to the following:
{ "kind": "sql#operation", "targetLink": "https://sqladmin.googleapis.com/v1/projects/ PROJECT_ID /instances/ INSTANCE_ID ", "status": "PENDING", "user": "user@example.com", "insertTime": "2022-07-17T20:23:15.540Z", "operationType": "UPDATE", "name": "fa3f7304-ccf6-4d2f-a6f5-24df00000032", "targetId": " INSTANCE_ID ", "selfLink": "https://sqladmin.googleapis.com/v1/projects/ PROJECT_ID /operations/fa3f7304-ccf6-4d2f-a6f5-24df00000032", "targetProject": " PROJECT_ID " }
REST v1beta4
Use a PATCH request with the instances:patch
method and the databaseVersion
flag.
Before using any of the request data, make the following replacements:
- PROJECT_ID : The project ID
- INSTANCE_ID : The instance ID
- DATABASE_VERSION : The database version to upgrade to.
HTTP method and URL:
PATCH https://sqladmin.googleapis.com/sql/v1beta4/projects/ PROJECT-ID /instances/ INSTANCE_ID
Request JSON body:
{ "databaseVersion": " DATABASE_VERSION " }
To send your request, expand one of these options:
You should receive a JSON response similar to the following:
{ "kind": "sql#operation", "targetLink": "https://sqladmin.googleapis.com/sql/v1beta4/projects/ PROJECT_ID /instances/ INSTANCE_ID ", "status": "PENDING", "user": "user@example.com", "insertTime": "2022-07-17T20:23:15.540Z", "operationType": "UPDATE", "name": "fa3f7304-ccf6-4d2f-a6f5-24df00000032", "targetId": " INSTANCE-ID ", "selfLink": "https://sqladmin.googleapis.com/sql/v1beta4/projects/ PROJECT_ID /operations/fa3f7304-ccf6-4d2f-a6f5-24df00000032", "targetProject": " PROJECT_ID " }
Check the database minor installed version
When you view the instance summary information , the database minor installed version is visible in the Configuration section.
Roll back an upgrade
While testing an upgrade, if you notice an issue, you might want to roll back your database to recover the database instance running the previous minor version.
To restore a pre-upgrade backup, complete the following steps:
- Provision a recovery database instance on the previous minor version.
- Configure settings on the recovery database instance to the pre-upgrade state.
- Restore the pre-upgrade backup you took to the recovery instance.
As an alternative to restoring a backup, perform a point-in-time recovery and create a new instance.

