Cloud SQL for MySQL FAQ

MySQL  |  PostgreSQL  |  SQL Server

About

What is Cloud SQL?
Cloud SQL is a service that delivers fully managed SQL databases in the cloud. Cloud SQL provides PostgreSQL, SQL Server, and MySQL databases.
What are the benefits of using Cloud SQL?
Cloud SQL lets you handoff to Google the mundane, but necessary and often time consuming tasks — like applying patches andupdates, managing backups and configuring replications — so you can put your focus on building greatapplications. And because we use standard wire protocols, you can connect from just about anyapplication, anywhere.
Which database versions are available with Cloud SQL? How are updates managed?

Cloud SQL for MySQL supports MySQL 8.4 (default), 8.0, 5.7, and 5.6.

Minor version updates are deployed as part of scheduled maintenance, with no further action required on your part. For more information about updates, seeOverview of maintenance on Cloud SQL instances.

To see the current version of your instance, go to theGoogle Cloud console, click the instance name to open theInstance details page. Or, you can use thegcloud sql instances describe command.

Does Cloud SQL support all database features?
Cloud SQL supports most common features of MySQL. For a list of all differences between standard MySQL and the functionality Cloud SQL provides, seeDifferences between Cloud SQL and standard MySQL functionality.
Are there any size or QPS limits?
There are no queries per second (QPS) limits for Cloud SQL instances. For information about connection, size, and App Engine-specific limits, seeQuotas and Limits.
How can I be notified when there are any changes to Cloud SQL?
You can sign up for thegoogle-cloud-sql-announce forum where we post announcements and news about Cloud SQL.
How do I report a bug, request a feature, or ask a question?
You can report bugs and request a feature on ourgoogle-cloud-sql-discuss group. You can ask a question inStack Overflow.For other support options, see theCloud SQL Support page.
Back to top

Getting Started

What is the best MySQL tool to use for managing my instance?
There are a variety of MySQL tools available for Cloud SQL. For executing individualstatements, you can use theMySQL Command-Line Tool. For executing more complicated tasks or to use a richerdatabase development environment, you can tryToad for MySQL orMySQL Workbench. For more information, seeAdmin and Reporting Tools.
What storage engine do I use?
For MySQL instances, InnoDB is the only storage engine supported.

If you have amysqldump file where all your tables are in MyISAM format, you canconvert them to InnoDB format by piping the file through a sed script:

mysqldump--databases[DATABASE_NAME]\-h[INSTANCE_IP]-u[USERNAME]-p[PASSWORD]\--hex-blob--default-character-set=utf8mb4|sed's/ENGINE=MyISAM/ENGINE=InnoDB/g' >[DATABASE_FILE].sql

Warning: Don't do this if yourmysqldump file contains themysql schema. Those files must remain in MyISAM.

Why does my new instance with no data show disk space used?
Cloud SQL and the database both use some space for system files and metadata when your instance is created.
Back to top

Data Storage, Replication, and Authentication

Where is my data stored?

Instance data is stored in the region where the instance resides. If you do not specify a storage location, your backups are stored in the multiregion that isgeographically closest to the location of your Cloud SQL instance. For example, if yourCloud SQL instance is inus-central1, your backups are stored in theus multi-region by default. However, a default location likeaustralia-southeast1 is outside of a multi-region. The closest multi-region isasia.

What is a zone?

A zone is an independent entity in a specific geographical location where you can run yourresources. For example, a zone named us-central1-a indicates a location in the centralUnited States.

For MySQL instances, fault tolerance across zones can be achieved by configuring the instance forhigh availability. The high availability configuration is strongly recommended for all production instances.

For more information about zones, seeZone Resources in the Compute Enginedocumentation.

What are the limits on storage?
For information on storage limits, seeQuotas and Limits.
How is my data replicated?

MySQL instances: MySQL instances provide ahigh availability configuration and MySQL read replicas. MySQL read replicas useasynchronous replication.

What kind of read replicas can I create?

For more information about read replicas, including use cases for each type, seeReplication Options.

How does Cloud SQL failover work?

For information about failover, seeOverview of the High Availability Configuration.

Is my data encrypted?
Cloud SQL customer data is encrypted when stored in database tables, temporary files, and backups. External connections can be encrypted byusing SSL, or by using theCloud SQL Auth Proxy.
How is encryption managed for data at rest?

Your data is encrypted using the 256-bitAdvanced Encryption Standard (AES-256), or better, with symmetric keys: that is, the same key is used to encrypt the data when it is stored, and to decrypt it when it is used. These data keys are themselves encrypted using a key stored in a secure keystore, and changed regularly.

For more details, seeEncryption at Rest in Google Cloud.

How is encryption managed for data in transit?

Google encrypts and authenticates all data in transit at one or more network layers when data moves outside physical boundaries not controlled by Google or on behalf of Google. Data in transit inside a physical boundary controlled by or on behalf of Google is generally authenticated but might not be encrypted by default. If you connect to an instance using its public IP address, use SSL/TLS certificates, so the data is secure during transmission. You can choose which additional security measures to apply based on your threat model. For example, you canconfigure SSL for intra-zone connections to Cloud SQL.

For more details, seeEncryption in Transit in Google Cloud.

How can I tell if an instance is a read replica?
You can use the Google Cloud console to see all of your Cloud SQL instances, and whetheran instance is a primary or read replica instance. You can also use thegcloud CLI to checkwhether an instance is a primary or read replica. For more information, seeChecking replication status.
Does Cloud SQL provide load balancing for requests to read replicas?
Cloud SQL does not automatically provide or configure load balancing. You can useconnection pooling to distribute read requestsbetween read replicas by switching between multiple connection endpoints.
Back to top

Backup and Recovery

How do I recover an instance?

To restore to a backup you can use theGoogle Cloud console or thegcloud command-line tool. For more details, seeRestoring an Instance.

To restore an instance to a specific point in time, you use a point-in-time recovery. For more information, see Use point-in-time recovery.

How much do backups cost?

Backups are charged at theinstance storage rate.

For more information about instance storage pricing and instance rates, seePricing.

Can I access automated backups older than seven days?

Automated backups occur every day and by default are retained for seven days. You canconfigure the backup retention value from one to 365 backups. At the end of retention period, the oldest backup is deleted. Automated backups are incremental. They contain only data that changed after the previous backup was taken. Your oldest backup is a similar size to your database. When the oldest backup is deleted, the size of the next oldest backup increases so that a full backup still exists.

Note that on-demand backups are not deleted until you manually remove them.

How does point-in-time recovery impact performance?
For Cloud SQL for MySQL, point-in-time recovery requires that you enable binary logging.This means that every update to your database is written to anindependent log, which involves a small reduction in write performance.Performance of read operations are unaffected by binary logging, regardless of the size of thebinary log files.
When do I use external versus cross-region replication for regionfailure protection?
External replicationCross-region replication
Self managed by customerCloud SQL managed cross region replica
Can replicate between non-Google Cloud and Google Cloud instancesCan replicate only between Cloud SQL instances
To migrate to/from Google Cloud to minimize downtime or for hybrid/multi cloud data protectionTo migrate data between Google Cloud regions to minimize downtime
Supports cross major version replicationDoes not support cross major version replication
Back to top

Managing Your Instances

Which actions might cause Cloud SQL instances to restart?
Cloud SQL instances might be restarted when you or Cloud SQL takes the following actions:
  • Update
  • Create
  • Promote replica
  • Maintenance
  • Recreate replica
  • Failover
  • Restart
  • Restore instance from backup
  • Enable high availability on an existing instance (this is an update to the instance)
  • Add a database flag that requires a restart

Restarting an instance doesn't change the public or private IP addresses of the instance.

See the following section:How long are instances shut down during restart?

How long are instances shut down during restart?

When instances are restarted, the majority of them are shut down for one to two minutes. Before the instance is shut down, all connections are ended and current work is flushed from disk.

For instances with a large load, this process takes longer, and it might look like the instance is stuck. In these cases, it might take up to an hour for the instance to shut down and restart. Reasons for instances taking a long time to shut down and restart can include when the user has many write transactions or when the transactions run for a long time.

Can I make my database larger or smaller?

MySQL instances: You can increase the amount of storage available to your instance at any time without incurring downtime. You cannot decrease the size of the storage of your instance.

You can also configure your instance to automatically increase its storage capacity when space is running low.Learn more.

Can I upgrade and downgrade vCPUs?

Yes. You can change the number of vCPUs that you use on your instance. You can increase or decrease the number of cores you use as many times as you want. It typically takes less than five minutes of downtime to change the number of vCPUs. If you are increasing the number of vCPUs on yourCloud SQL Enterprise Plus edition primary instance, then the change takes effect with near-zero downtime.

Do I need to use the Google Cloud console to manage Cloud SQL?
No. All management tasks that can be done using the Console can also be done programmatically using theCloud SQL Admin API, or scripted using thegcloud command-line tool.
How can I reclaim the space from a dropped table?
When you drop a table from a database and then check the Google Cloud console, you might see that the space freed by dropping the tables is not reflected in the reportedStorage Used of the instance. Instances running MySQL 5.5 have theinnodb_file_per_tableflag set toOFF by default; InnoDB never shrinks its default tablespace.To reclaim space for this configuration, create a new instance from the smaller database, orchange the value of theinnodb_file_per_table flag toON.For information about changing database flags, seeConfiguring Database Flags.
How can I reclaim the space used by temporary files?
Temporary files can grow when SQL queries create manytemporary tables. To reclaim the space used by temporary tables, you need to restart the database.Note that restarting the database does not reduce the provisioned disk space resulting from thegrowth of temporary files.
Can I manually purge binary logs from instances?
Binary logs use storage space. Binary logs are automatically deleted with their associated automatic backup, which generally happens after about seven days. You cannot manually delete binary logs.

If the size of your binary logs causes an issue for your instance, you can increase your storage size. You can also disable and then reenable binary logging, which deletes binary logs. Note, however, that doing so does not shrink the size of the storage provisioned for the instance.

Can I configure a custom binary log retention policy?
Binary logs are automatically deleted with their associated automatic backup, which generally happens after about seven days. You cannot change the seven-day time period.
How can I track changes to data?
To track changes to data,enable binary logging for your instance. Tracking changes to data can help you recover from accidental data loss. Inthe event of accidental data loss such as from aDROP DATABASE command, you can restoreup to the binary log coordinates just before the data loss event. For more information, seepoint-in-time recovery.
Can I import or export a specific database?
Yes. You can import or export a specific database or all databases on an instance. For moreinformation, seeImporting Data orExporting Data.
Can I import or export a CSV file?
You can import or export a CSV file for MySQL or PostgreSQL. For more information, seeCreating a CSV file.

CSV is not currently supported in Cloud SQL for SQL Server.

Do I need a Cloud Storage account to import or export data to an instance?
Cloud SQL supports importing and exporting databases (compressed or uncompressed SQL dumpfiles) and CSV files using a Cloud Storage bucket. To import or export using aCloud Storage bucket, you need to either sign up for a Google Cloud account and create abucket, or have access to a Cloud Storage bucket in another account. For more information, seeExporting and importing using SQL dump files, orExporting and importing using CSV files.
What doesERROR_RDBMS mean on an import operation?
This error occurs if MySQL returns an error during a data import operation. Common causes include invalid syntax, using a database or table that has not been defined, and attempting to run MySQL statements that require theSUPER privilege.
If I delete my instance, can I reuse the instance name?
Yes.
What is thecloudsqladmin database user?
Every Cloud SQL instance includes a database user calledcloudsqladmin. You may notice this user if you specifySHOW GRANTS FOR cloudsqladmin@localhost. On some instances this will also show up in the system user table. This user account is used by automated processes that need to access the data in your instance (for example, backing up your instance or performing an import or export).
How can I useGRANT ALL?
Cloud SQL does not supportSUPER privileges, which means thatGRANT ALL PRIVILEGES statements will not work. As an alternative,you can useGRANT ALL ON `%`.*.
How can I access transaction logs for my instances?
For MySQL instances, if you enable binary logging for your instance (seeEnabling binary logging)and configure an IP address for your instance (seeConfiguring access for IP connections), then you can use the standard MySQLmysqlbinlogutility to examine the transaction logs for the instance.
What level of transaction isolation does Cloud SQL provide?

MySQL instances: Cloud SQL providesREPEATABLE READ transaction isolation. You can change the transaction isolation level for the current session, but usually the default value is preferred. For more information, see Transaction Isolation Levels in the MySQL documentation.

How can I protect my instance from accidental deletion?
You can enable deletion protection when you create an instance or at a later time. If this setting is enabled, you must disable it before deleting the instance. SeePrevent deletion of an instance.
Back to top

Insights

Why can't I find the sample query plan in Insights?
We only have sample queries for getting the query plan, because of the performance impact it can have on the query. As a result, sometimes sample query plans do not appear.
Back to top

Pricing and Billing

How can I try out Cloud SQL?
The smallest instance is thedb-f1-micro. You can use it to try out the service. Note that shared core instances are not covered by the SLA.
How many instances can I create in a project?
For information about the instance limit, seeQuotas and Limits.
What size database instance do I need? How much RAM?
In general, you can increase the performance of your database by choosing a larger instance with more RAM and CPU. This increases the performance of many queries that involve large amounts of computation, such as those involving joins, ORDER BYs, or GROUPing, though the performance of updates affecting single rows will not be much affected. However, the bigger the size of the instance, the greater the operational latency. For more information about instance sizes and pricing, see thepricing page.
How is use of my instance calculated?

MySQL instances: You are charged per minute for the time that your instance is on (the activation policy isALWAYS).

How is storage calculated?
Storage is calculated based on the amount of storage you have provisioned for your instance. Storage for backups is charged by how much space your backups are using. Storage is charged whether your instance is on or off.
How can I see how much I will be charged?
TheBilling tab of theGoogle Cloud console shows you the charges your instances have incurred since the last bill was issued.
What happens when my instance reaches the allowed size?
If your instance reaches the provisioned storage size, and you do not have automatic storage increase enabled or it has reached its configured limit, future writes to the database are disallowed until you increase the storage size. Increasing the storage size does not require an instance restart or downtime.
Why is my instance suspended?
This is probably due to an issue with your Google Cloud account. You can determine your billing status by filing a Billing Support Request. After the billing issue is resolved, the instance returns to runnable status within a few hours. Note that suspended MySQL instances are deleted after 90 days.
Why was my instance deleted?
MySQL instances that are suspended for 90 days are deleted. This applies to instances with a state ofSUSPENDED. Instances that are stopped, with a state ofRUNNABLE, are not deleted.
How can I cancel my Cloud SQL account?
You can deactivate Cloud SQL for a project by visiting theGoogle Cloud console, selecting the project, selecting theAPI service to open the API Dashboard. Find theCloud SQL API and clickDisable for that API.
How do I disable billing?
You can disable billing by clickingDisable billing in the Google Cloud consoleBilling & settings pane for a project. If you disable billing, you also disable the Cloud SQL service. Make sure you really want to disable the Cloud SQL service before you disable billing.

After you disable billing, you will receive one last bill for charges that occurred between the beginning of the billing cycle and when you cancelled.

Caution: When you disable billing, it is disabled for all services in that project. You can't disable billing for individual services or APIs. For more information, see theDisabling Billing section in the Google Cloud console help guide.
Back to top

Using Cloud SQL with App Engine

Can I connect from App Engine to a MySQL instance?
You can connect from an App Engine application to a MySQL instance, whether the application is running in the standard or the flexible environment. For more information, seeConnecting from App Engine standard environment, orConnecting from App Engine flexible environment.
Can my App Engine application in the US access my Cloud SQL instance in the EU (and the other way around)?

If you are connecting to a MySQL instance, your App Engine application does not need to be in the same region, and it can be running in either the standard or the flexible environment. However, a larger distance between your Cloud SQL instance and your App Engine application causes greater latency for connections to the database.

Which Google Cloud database service is right for me?
This depends on the requirements of your application. Google Cloud offers a number of options for storing, managing and retrieving your data. For more information, seeGoogle Cloud databases.
Do I need to install a local database server to use the App Engine Development Server?
No. You can configure App Engine to use either Cloud SQL or a locally installed database server when running on the development server.
What languages can I use to access my instance?
App Engine standard environment supports several languages that you can use to connect to yourinstances. For more information, seeConnecting from App Engine standard environment, orConnecting from App Engine flexible environment.

If you are not using App Engine, you can use any language that has an associatedconnector or API.For a list of supported languages, see theConnectors and APIs chapter in the MySQLReference Manual.

Can I use Django with Cloud SQL?
Yes. Cloud SQL is compatible with Django. SeeGetting Started with Django.
Which placeholders can I use in my Python query string?
Python users can only use the%s format code in parameter substitution. Therefore, the following statement is invalid:cursor.execute('INSERT INTO entries (guestAge) VALUES (%d)', (age)).
How do I manage connections?

Managing your database connections effectively is an important aspect of database application development, including using connection pooling and exponential backoff. For examples of how to employ these techniques in a variety of languages and frameworks, seeManaging database connections.

To learn more about instance connection limits, seeQuotas and Limits.

What does a SQLException with message of "Invalid connection ID" mean?
It means that the connection is no longer open on the server and is discarded by the client.  You do not need to call 'close' on these connections; they are already closed.
Can I access my Cloud SQL instance programmatically outside of App Engine?
Yes. You can access Cloud SQL instances programmatically from external applications by using any supported language. You can also connect using the Cloud SQL Java Connector, including writing Apps Script scripts to access your Cloud SQL databases. SeeConnecting overview.
Back to top

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 2026-02-19 UTC.