溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

innodb表 手工導(dǎo)入導(dǎo)出

發(fā)布時(shí)間:2020-07-21 03:05:28 來(lái)源:網(wǎng)絡(luò) 閱讀:484 作者:浮生鳳年 欄目:MySQL數(shù)據(jù)庫(kù)

上一篇文章介紹了“innobackupex 熱備指定庫(kù)表操作”,分析其整個(gè)過(guò)程,就是將表的字典和數(shù)據(jù)文件導(dǎo)出在導(dǎo)入的原理,那么針對(duì)單表的備份與恢復(fù)(新實(shí)例或者新庫(kù)中恢復(fù)),我們可以直接采用物理導(dǎo)出innodb表的辦法。
具體操作如下:
1.將備份表加鎖,導(dǎo)出cfg。

mysql> select * from t1;
+------+
| id |
+------+
| 1 |
| 2 |
| 3 |
| 4 |
| 2 |
| 3 |
| 4 |
+------+
7 rows in set (0.00 sec)

mysql> flush table t1 with read lock;
Query OK, 0 rows affected (0.01 sec)

發(fā)現(xiàn)t1生成了cfg文件。

[root@222 test]# ls
db.opt t1.cfg t1.frm t1.ibd t2.frm t2.ibd

執(zhí)行unlock tables ,cfg文件回收。

mysql> unlock tables;
Query OK, 0 rows affected (0.00 sec)

[root@222 test]# ls ../test/
db.opt t1.frm t1.ibd t2.frm t2.ibd

2.在unlock tables前,將t1的cfg和ibd文件備份。

[root@222 test]# cp t1.ibd t1.cfg /home/backup/

3.創(chuàng)建一個(gè)新庫(kù),并創(chuàng)建相同結(jié)構(gòu)的t1表。
mysql> create database test1;
Query OK, 1 row affected (0.00 sec)
mysql>
mysql> use test1;
Database changed
mysql>
mysql> create table t1 like test.t1;
Query OK, 0 rows affected (0.03 sec)

4.刪除新建的t1表空間。

mysql> alter table t1 discard tablespace;
Query OK, 0 rows affected (0.02 sec)

發(fā)現(xiàn)新建的t1表空間的ibd文件被清除。

[root@222 test]# ls ../test1/
db.opt t1.frm

5.將備份的t1表的cfg和ibd文件拷貝到新建的庫(kù)下。
[root@222 test]# cd /home/backup/

[root@222 test1]# ll -trh
總用量 116K
-rw-rw----. 1 mysql mysql 61 12月 16 09:49 db.opt
-rw-rw----. 1 mysql mysql 8.4K 12月 16 09:49 t1.frm
-rw-r-----. 1 root root 96K 12月 16 09:51 t1.ibd
-rw-r-----. 1 root root 354 12月 16 09:51 t1.cfg
[root@222 test1]# chown -R mysql.mysql *
[root@222 test1]#
[root@222 test1]#
[root@222 test1]# ll -trh
總用量 116K
-rw-rw----. 1 mysql mysql 61 12月 16 09:49 db.opt
-rw-rw----. 1 mysql mysql 8.4K 12月 16 09:49 t1.frm
-rw-r-----. 1 mysql mysql 96K 12月 16 09:51 t1.ibd
-rw-r-----. 1 mysql mysql 354 12月 16 09:51 t1.cfg

6.執(zhí)行新建t1表導(dǎo)入表空間操作。
mysql> alter table t1 import tablespace;
Query OK, 0 rows affected (0.08 sec)

7.查詢結(jié)果和第1步備份的表一致,操作完成

mysql> select * from test1.t1;
+------+
| id |
+------+
| 1 |
| 2 |
| 3 |
| 4 |
| 2 |
| 3 |
| 4 |
+------+
7 rows in set (0.00 sec)

btw.
a.由于新表存在cfg文件,在刪除庫(kù)操作的時(shí)候會(huì)報(bào)錯(cuò),
ERROR 1010 (HY000): Error dropping database (can't rmdir './test1/', errno: 17)
如果使用innobackupex備份,并導(dǎo)入的exp文件,則會(huì)發(fā)現(xiàn)刪除庫(kù)后,exp文件無(wú)法刪除,那么手工將exp文件刪除,在刪除庫(kù)即可。
如果使用如上方法手工命令方式導(dǎo)入cfg文件,在刪除庫(kù)時(shí)報(bào)錯(cuò),但是查看庫(kù)文件時(shí)發(fā)現(xiàn)無(wú)文件,則在執(zhí)行一遍即可;對(duì)于新導(dǎo)入的cfg文件,可以在次執(zhí)行如下命令,則cfg文件消失。
mysql> flush table t1 for export;
Query OK, 0 rows affected (0.00 sec)

[root@222 test1]# ll -trh
總用量 116K
-rw-rw----. 1 mysql mysql 61 12月 16 09:49 db.opt
-rw-rw----. 1 mysql mysql 8.4K 12月 16 09:56 t1.frm
-rw-r-----. 1 mysql mysql 96K 12月 16 09:56 t1.ibd
-rw-r-----. 1 mysql mysql 355 12月 16 09:57 t1.cfg

mysql>
mysql>
mysql> unlock tables;
Query OK, 0 rows affected (0.00 sec)

[root@222 test1]# ll -trh
總用量 112K
-rw-rw----. 1 mysql mysql 61 12月 16 09:49 db.opt
-rw-rw----. 1 mysql mysql 8.4K 12月 16 09:56 t1.frm
-rw-r-----. 1 mysql mysql 96K 12月 16 09:56 t1.ibd

b.發(fā)現(xiàn)手工命令行方式備份恢復(fù)更加便捷,但是會(huì)有一個(gè)鎖表的過(guò)程,那么則根據(jù)不同情況選擇不同方式進(jìn)行備份,對(duì)于線上有寫入的表采用innobackupex方式,不會(huì)導(dǎo)致復(fù)制延遲;對(duì)于無(wú)寫入的表,直接采用加鎖導(dǎo)入cfg文件方式,操作更加便捷。

OK,done。

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI