documentation/Reference/Database Driver Reference/Google Cloud Spanner.md
{% include database-boilerplate.html %}
| Item | Details |
|---|---|
| URL format | jdbc:cloudspanner:/projects/project_name/instances/instance_name/databases/database_name?credentials=path/to/keyfile.json |
| Connecting to an emulator: | |
jdbc:cloudspanner://host:9020/projects/project_name/instances/instance_name/databases/database_name | |
| SSL support | Yes |
| Ships with Flyway Command-line | Yes |
| Maven Central coordinates | com.google.cloud:google-cloud-spanner-jdbc |
| Supported versions | 2.2.6 and later |
| Default Java class | com.google.cloud.spanner.jdbc.JdbcDriver |
Executing multiple schema changes against Cloud Spanner is comparatively slow due to its need to validate your data. You can read more about it here.
Flyway alleviates this via batching which executes multiple schema changes in one request to minimize latency and improve performance.
To enable batching follow the guide here for your platform.
In the Flyway Command-Line this would look like the following:
<pre class="console"><span>></span> flyway migrate -batch=true</pre>Flyway Community Edition has a 10GB limit on database size, and this is unlimited in Flyway Teams and Enterprise.
You can find out more about Flyway Teams Edition here.
You must configure a JDBC URL that points to your database. You can configure a connection using this sample URL as an example:
jdbc:cloudspanner:/projects/<project_name>/instances/<instance_name>/databases/<database_name>?credentials=<path/to/keyfile.json>
We need to fetch three things to complete this url:
project_nameinstance_namedatabase_namekeyfile.json for authentication (not required when connected to an emulated session)project_name, instance_name, database_name can all be found on the Cloud Spanner web interface. For authentication, we recommend using the 'keyfile'. This requires creating a service account for Cloud Spanner.
To do this, open IAM within GCP project settings. There you can create a service account. Upon creating this you'll have the option to download the keyfile.
The authentication file needs to be accessible to Flyway, so save it somewhere accessible on your machine. Then configure path_to_service_account to point to this file.
You can learn more about service accounts here.
Set this URL in the url property in your Flyway configuration.
Set the user and password properties to empty in your Flyway configuration (conf or TOML) since we're authenticating using the JDBC URL