Jump to content

Minimal downtime migration from PostgreSQL database to Spanner PostgreSQL dialect database


Recommended Posts

Spanner has emerged as a compelling choice for enterprises seeking to address the limitations of traditional databases. With the general availability and increasing popularity of Spanner PostgreSQL dialect, there is growing interest in migrating from PostgreSQL to Spanner.  Migrating from a PostgreSQL database to Spanner (PostgreSQL dialect) can bring significant benefits, including: 

  • Horizontal scalability

  • Strong consistency

  • 99.999% availability offering

  • Familiar syntax and semantics for PostgreSQL developers 

  • Elimination of maintenance tasks like VACUUMing, tuning shared buffers and managing connection pooling

While the benefits of Spanner are undeniable, migrating a production database can be a daunting task. Organizations fear downtime and disruptions to operations. Fortunately, with careful planning and the Spanner Migration Tool (SMT), it is possible to migrate from PostgreSQL to Spanner with minimal downtime. 

The complete migration process is in the official guide. This blog post demonstrates a minimal downtime migration of a sample application.

1. Configure source (PostgreSQL) and destination (Spanner) resources

Follow this guide to create a Cloud SQL for PostgreSQL database (named example) and this guide to set up a destination Spanner instance.

2. Set up sample application

This demo migration will be performed using Cloud Shell. Launch Cloud Shell and authenticate:

code_block
<ListValue: [StructValue([('code', 'gcloud auth application-default login'), ('language', ''), ('caption', <wagtail.rich_text.RichText object at 0x3ef8267547f0>)])]>

The sample app is available in github:

code_block
<ListValue: [StructValue([('code', 'git clone https://github.com/cloudspannerecosystem/spanner-migration-example.git\r\ncd spanner-migration-example'), ('language', ''), ('caption', <wagtail.rich_text.RichText object at 0x3ef826754cd0>)])]>

This app works with a schema of three tables: singers, albums and songs. It performs periodic data inserts, to simulate a production like traffic.

Configure the app to connect to PostgreSQL. Gather the instance's connection name from the Cloud SQL instance overview page. Assign the correct values below and run:

code_block
<ListValue: [StructValue([('code', 'cat > .env <<EOF\r\nCLOUDSQL_INSTANCE_CONNECTION_NAME=<connection-name>\r\nCLOUDSQL_DATABASE=example\r\nCLOUDSQL_USERNAME=postgres\r\nCLOUDSQL_PASSWORD=<password>\r\nEOF'), ('language', ''), ('caption', <wagtail.rich_text.RichText object at 0x3ef826754100>)])]>

Start the dockerized application:

code_block
<ListValue: [StructValue([('code', 'docker-compose up app-cloudsql'), ('language', ''), ('caption', <wagtail.rich_text.RichText object at 0x3ef826754c70>)])]>

This should insert records into Cloud SQL PostgreSQL. After verification, stop the application:

code_block
<ListValue: [StructValue([('code', 'docker-compose down'), ('language', ''), ('caption', <wagtail.rich_text.RichText object at 0x3ef8267543a0>)])]>

3. Configure SMT

Follow this quickstart guide to launch SMT’s web UI and connect to Spanner by entering project-id and instance-id created in step#1.

To allow SMT to connect to the PostgreSQL database, follow this IP allowlisting guide.

To Connect to source Database, enter:

  • Hostname: PostgreSQL instance’s Public or Private IP

  • Port: 5432

  • PostgreSQL Database Name: example

  • Spanner Dialect: PostgreSQL

1 - Test Connection

4. Configure and migrate schema

In the "Configure Schema" view, clicking on each table shows the schema for PostgreSQL and Spanner in a side-by-side comparison.

2 - Configure schema

Spanner tables albums and songs can leverage interleaving for better query optimization. This can be done through the “INTERLEAVE” tab.

3 - Interleave tab

Next, plan for all the issues displayed by SMT to ensure a smooth migration.

In Spanner all tables need a primary key. The singers table had no primary key, but it had a UNIQUE constraint on singer_id. SMT cleverly migrated that column to be our primary key.

4 - Primary Key

Some columns have SERIAL data types (for IDs). Since Spanner does not support this, we can use SEQUENCEs. Spanner SEQUENCEs are not monotonically increasing to prevent hotspotting. We will need to manually create those later.

Spanner only supports 8 byte integrals, so int4/SERIAL columns were migrated to int8s. They will affect the refactoring of the application later. 

We can remove the identified redundant index by selecting it in the songs table and skipping its creation.

5 - Skip index

With a plan to solve all issues at hand, save the work by clicking "Save Session". Continue by clicking on “Prepare Migration”.

At first, we will only migrate the Schema to validate our application for Spanner. Enter:

  • Migration mode: Schema

  • Spanner database: example

Click on “Migrate”. We will get a link to the created database on completion.

6 - Migrate schema

Finally, apply the schema updates that weren’t automated by SMT. Run statements from this file on the migrated database. You can do it through Spanner Studio.

5. Update application

We needed to do some minor updates to have our application working with Spanner, including:

  • Configuring PGAdapter for converting the PostgreSQL wire-protocol into its Spanner equivalent.

  • Updating queries, because Spanner supports jsonb in lieu of the json type.

You can learn more about these updates here.

To test the application against Spanner, we configure it first:

code_block
<ListValue: [StructValue([('code', 'cat >> .env <<EOF\r\nSPANNER_PROJECT=$GOOGLE_CLOUD_PROJECT\r\nSPANNER_INSTANCE=<spanner-instance-id>\r\nSPANNER_DATABASE=example\r\n\r\nPGADAPTER_HOST=pgadapter\r\nPGADAPTER_PORT=5432\r\nEOF'), ('language', ''), ('caption', <wagtail.rich_text.RichText object at 0x3ef8267547c0>)])]>

We then start it:

code_block
<ListValue: [StructValue([('code', 'docker-compose up app-spanner'), ('language', ''), ('caption', <wagtail.rich_text.RichText object at 0x3ef8267543d0>)])]>

After verifying that the application has inserted a few rows successfully, we can stop it and delete the sample data.

code_block
<ListValue: [StructValue([('code', 'docker-compose down\r\nalias execute-sql="gcloud spanner databases execute-sql example --instance=<spanner-instance-id>"\r\nexecute-sql --sql="DELETE FROM songs"\r\nexecute-sql --sql="DELETE FROM albums"\r\nexecute-sql --sql="DELETE FROM singers"'), ('language', ''), ('caption', <wagtail.rich_text.RichText object at 0x3ef8267540a0>)])]>

6. Minimal downtime migration

SMT orchestrates the “Minimal Downtime Migration” process by:

  1. Loading initial data from the source database into the destination.
  2. Applying a stream of change data capture (CDC) events.
7 - SMT diagram

SMT will set up:

  1. Cloud Storage bucket to store CDC events while the initial data loading occurs.

  2. Datastream job for bulk loading of CDC data and streaming incremental data to Storage bucket. 

  3. Dataflow job to migrate CDC events into Spanner. 

To allow SMT to deploy this pipeline, make sure you have all the necessary permissions.

Next, follow this guide to set up the source PostgreSQL CDC. You can then restart the application pointing to PostgreSQL to simulate live traffic:

code_block
<ListValue: [StructValue([('code', 'docker-compose up app-cloudsql'), ('language', ''), ('caption', <wagtail.rich_text.RichText object at 0x3ef826754b20>)])]>

Jump back to the SMT, resume the saved session and continue to “Prepare Migration”. Enter:

  • Migration Mode: Data 

  • Migration Type: Minimal downtime Migration.

Input the source PostgreSQL database details (example) and the destination Spanner database (example).

Input the connection profile for the source database (from the PostgreSQL CDC configuration) and follow the IP allowlisting instructions. 

Finally, set up the target connection profile and click on “Migrate” to start the migration.

8 - Migrate data

SMT generates useful links for monitoring the migration.

7. Using Spanner

Stop the application that is using PostgreSQL:

code_block
<ListValue: [StructValue([('code', 'docker-compose down'), ('language', ''), ('caption', <wagtail.rich_text.RichText object at 0x3ef826754d90>)])]>

Wait for the Spanner to catch up, once Dataflow’s backlog reaches zero, switch to the Spanner application:

code_block
<ListValue: [StructValue([('code', 'docker-compose up app-spanner'), ('language', ''), ('caption', <wagtail.rich_text.RichText object at 0x3ef826754160>)])]>

With that we successfully completed our demo app migration using SMT!

Now you can click on “End Migration” and clean up the jobs.

Conclusion

Through careful planning and utilizing SMT, we can minimize downtime during the migration to Spanner, ensuring an efficient transition.

View the full article

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...