Skip to main content

Overview

In this article, you’ll learn how to migrate a database from MariaDB, a fork of MySQL, into PlanetScale.
The steps outlined in this guide used MariaDB version 10.6.12 on an Ubuntu host. Depending on the version of MariaDB you are using, your results may vary. Don’t hesitate to reach out to us for further assistance.
We recommend reading through the Database import documentation to learn how our import tool works before proceeding.

Prerequisites

Configure MariaDB

Before you can start migrating data, there are a number of configuration options that need to be in place for our import tool to work properly:
  • binlog_format
  • log_bin
  • sql_mode
The steps below edit the configuration file on a self-managed server. If your MariaDB database is hosted on Amazon RDS, you cannot edit these values directly. Instead, set them through a DB parameter group, enable binary logging by turning on automated backups, and set your binlog retention period, as described in the AWS RDS migration guide. Skip the GTID parameters in that guide, since MariaDB uses its own GTID implementation and does not have a gtid_mode setting. Then return here to configure the migration account.
You may run the following query to check these values:
In the results listed above, none of the options are configured properly, so let’s set them up now. The exact path to your configuration file varies by operating system. This demo uses Ubuntu, so the MariaDB configuration file is located at /etc/mysql/mariadb.conf.d/50-server.cnf. Edit the configuration file and add the following values at the end of the file:
With the configuration updated, restart the MariaDB service. The exact command varies by the service manager you are using on your host, with this demo using systemctl:

Configure a migration account

The PlanetScale import tool requires a user account with a specific set of permissions on the database you wish to migrate, as well as the server itself to set up the databases that track replication changes. Connect to your MariaDB server with an account that has admin privileges, then run the following script, replacing the placeholders:
  • <SUPER_STRONG_PASSWORD> - The password for the migration_user account
  • <DATABASE_NAME> - The name of the database you will import into PlanetScale
The ps_import_<id> and _vt databases are created by the import tool to track replication between MariaDB and PlanetScale. The last portion of the ps_import_<id> name varies per import, which is why the grant uses a wildcard.
If your MariaDB database is hosted on Amazon RDS, also grant access to the RDS configuration procedure so the import tool can read your binlog retention setting:
This procedure only exists on Amazon RDS. Running the grant against a self-managed MariaDB server fails with ERROR 1305: PROCEDURE mysql.rds_show_configuration does not exist.
Verify the grants were applied correctly:
You should see all of the GRANT statements listed. If you only see one or two lines, the grants didn’t apply correctly. For a full explanation on what each of these grants do, our article on configuring a migration account for MySQL databases details each requirement.

Importing your database

Now that your MariaDB database is configured and ready, follow the Database Imports guide to complete your import. When filling out the connection form in the import workflow, use the following information:
  • Host name - Your MariaDB server hostname or IP address
  • Port - 3306 (default for MariaDB)
  • Database name - The exact database name to import
  • Username - migration_user (created in previous section)
  • Password - The password you set for the migration user
  • SSL verification mode - Select based on your MariaDB SSL configuration
The Database Imports guide will walk you through:
  • Creating your PlanetScale database
  • Connecting to your MariaDB database
  • Validating your configuration
  • Selecting tables to import
  • Monitoring the import progress
  • Switching traffic and completing the import

Need help?

Get help from the PlanetScale Support team, or join our Discord community to see how others are using PlanetScale.