从MySQL 5.5迁移到Mariadb 10.1.14所遇到的问题
程序员文章站
2023-12-22 10:57:16
迁移计划如下:
1.备份mysql 5.5的数据库,对指定库进行备份。
2.还原到mariadb,然后建立复制。
3.然后就可以愿意啥时候切换...
迁移计划如下:
1.备份mysql 5.5的数据库,对指定库进行备份。
2.还原到mariadb,然后建立复制。
3.然后就可以愿意啥时候切换就啥时候切换。
遇到的问题:
因为一般都是innodb,所以我想用xtrabackup工具备份。备份后发现还原需要依赖innodb的表空间切换。
1.表空间切换,必须要打开innodb_file_per_table。也就是说所有的表都要有独立的文件。有一些表虽然是innodb但是存在ibdata下面。
幸好可以申请维护窗口,简单粗暴的重建了。
2.从mysql 5.5到mariadb,在import tablespace的时候发生错误,说表结构比匹配,然后根据字段发现都是一些 date,datetime,timestamp类型。
碰到这个问题,还在找有啥解决方法,找了一圈也没找到,对报错的表使用了mysqldump,然后导入,其实mysqldump速度不慢。
3.因为xtrabackup备份和mysqldump已经有一段时间了,所以肯定会有一些数据已经存在,所以在创建主从复制的时候肯定会报主键错误。
直接开slave_skip_errors =1062,提过主键冲突。发现落下的貌似有点多,那么mariadb这个版本已经支持了多线程复制。
关于参数mariadb官网可以看,开起来:
slave_parallel_mode=optimistic slave_parallel_threads=6 set global innodb_flush_log_at_trx_commit=0; --追不上把这个也开了 mariadb [(none)]> show processlist; +----+-------------+-----------+------+---------+------+----------------------------------+------------------+----------+ | id | user | host | db | command | time | state | info | progress | +----+-------------+-----------+------+---------+------+----------------------------------+------------------+----------+ | 5 | root | localhost | null | query | 0 | init | show processlist | 0.000 | | 23 | system user | | null | connect | 1197 | waiting for master to send event | null | 0.000 | | 24 | system user | | null | connect | 1197 | waiting for work from sql thread | null | 0.000 | | 25 | system user | | null | connect | 1197 | waiting for work from sql thread | null | 0.000 | | 26 | system user | | null | connect | 1197 | waiting for work from sql thread | null | 0.000 | | 27 | system user | | null | connect | 1197 | waiting for work from sql thread | null | 0.000 | | 28 | system user | | null | connect | 1197 | waiting for work from sql thread | null | 0.000 | | 29 | system user | | null | connect | 1197 | waiting for work from sql thread | null | 0.000 | | 30 | system user | | null | connect | 0 | apply log event | null | 0.000 | +----+-------------+-----------+------+---------+------+----------------------------------+------------------+----------+ 9 rows in set (0.00 sec)
以上所述是小编给大家介绍的从mysql 5.5迁移到mariadb 10.1.14所遇到的问题,希望对大家有所帮助