现在大多数同学在线上采取的备份策略都是xtrabackup全备+binlog备份,那么当某天某张表意外的删除,那么如何快速从xtrabackup全备中恢复呢?从MySQL 5.6版本开始,支持可传输表空间(Transportable Tablespace),那么利用这个功能就可以实现单表的恢复,同样利用这个功能还可以把innodb表移动到另外一台服务器上。可以参考:https://yq.aliyun.com/articles/59271
下面进行从xtrabackup全备恢复单表的测试。
1. 开启了参数innodb_file_per_table
2. 安装工具:mysql-utilities,其中mysqlfrm可以读取表结构。
1 |
$ yum install mysql-utilities -y |
查看原表中的数据:
1 2 3 4 5 6 7 |
mysql> select count(*) from sbtest.sbtest1; +----------+ | count(*) | +----------+ | 10000 | +----------+ 1 row in set (0.00 sec) |
执行备份:
1 |
$ innobackupex --defaults-file=/etc/my.cnf --user=root --password=123456 /data/ |
apply-log
1 |
$ innobackupex --defaults-file=/etc/my.cnf --apply-log /data/2018-03-21_08-09-43 |
删除sbtest1表
1 |
mysql> drop table sbtest.sbtest1; |
利用mysql-utilities工具读取表结构(不支持MariaDB哦)
1 |
$ mysqlfrm --diagnostic /data/2018-03-21_08-09-43/sbtest/sbtest1.frm |
得到表结构
1 2 3 4 5 6 7 8 |
CREATE TABLE `sbtest1` ( `id` int(11) NOT NULL AUTO_INCREMENT, `k` int(11) NOT NULL DEFAULT '0', `c` char(120) NOT NULL DEFAULT '', `pad` char(60) NOT NULL DEFAULT '', PRIMARY KEY (`id`), KEY `k_1` (`k`) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=latin1; |
加一个写锁,确保安全
1 |
mysql> lock tables sbtest1 write; |
丢弃表空间
1 2 |
mysql> alter table sbtest1 discard tablespace; Query OK, 0 rows affected (0.00 sec) |
从备份中拷贝ibd文件,并且修改权限
1 2 |
$ cp /data/2018-03-21_08-09-43/sbtest/sbtest1.ibd /var/lib/mysql/sbtest/ $ chown -R mysql.mysql /var/lib/mysql/sbtest/sbtest1.ibd |
这里有警告,可以忽略。详情可以看:https://yq.aliyun.com/articles/59271
查询数据是否一致:
1 2 3 4 5 6 7 8 9 10 |
mysql> alter table sbtest1 import tablespace; Query OK, 0 rows affected, 1 warning (0.08 sec) mysql> select count(*) from sbtest1; +----------+ | count(*) | +----------+ | 10000 | +----------+ 1 row in set (0.00 sec) |
最后解锁:
1 2 |
mysql> unlock tables; Query OK, 0 rows affected (0.00 sec) |
<参考>
https://zhuanlan.zhihu.com/p/52185155
http://www.cnblogs.com/gomysql/p/6600616.html