Answer the question
In order to leave comments, you need to log in
How to migrate Mysql(InnoDB) database from MariaDB to Percona XtraDB?
There is a database (about 57GB), spinning in MariaDB 10.1. You need to transfer it to Percona XtraDB (it will spin there as part of the Galera cluster, but that's later, the main thing is to transfer the database to at least one node). The question was how to do it as quickly as possible. mysqldump works fine (database is consistent, compatible with applications), but the dump takes about 6 hours to fill - way too long. When trying to stream dump
mysqldump --single-transaction DB | mysql --host=IP -uUSER -pPASS -C DB
Answer the question
In order to leave comments, you need to log in
transfer with mysqldump. Then connect Percona as a slave to MariaDB (Check that the binlog format is the same and gtid settings). As the slave catches up with the master, switch to Percona.
Downtime will be a few seconds (time is not switching)
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question