欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

MySQL数据库InnoDB数据恢复工具的使用小结详解

程序员文章站 2024-02-23 10:35:22
本文从实际使用经验出发,介绍一款开源的mysql数据库innodb数据恢复工具:innodb-tools,它通过从原始数据文件中提取表的行记录,实现从丢失的或者被毁坏的my...
本文从实际使用经验出发,介绍一款开源的mysql数据库innodb数据恢复工具:innodb-tools,它通过从原始数据文件中提取表的行记录,实现从丢失的或者被毁坏的mysql表中恢复数据。例如,当你不小心执行drop table、truncate table或者drop database之后,可以通过以下方式恢复数据。
以下内容大部分参考自:percona data recovery tool for innodb,文档是英文的,而且写的比较晦涩,这里是个人的实战经验总结,供大家参考学习。
在介绍innodb-tools工具进行数据恢复之前,首先明确以下几点:
1、这个工具只能对innodb/xtradb表有效,而无法恢复myisam表(注: percona号称有一套用于恢复myisam表的工具,但是本人未做尝试)。
2、这个工具是以保存的mysql数据文件进行恢复的,而不用mysql server运行。
3、不能保证数据总一定可被恢复。例如,被重写的数据不能被恢复,这种情况下可能需要针对系统或物理的方式来恢复,不属于本工具的范畴。
4、恢复的最好时机是当你发现数据丢失时,尽快备份mysql数据文件。
5、使用这个工具需要手动做一些工作,并不是全自动完成的。
6、恢复过程依赖于你对丢失数据的了解程度,在恢复过程中可能需要在不同版本的数据之间做出选择。那么如果你越了解自己的数据,恢复的可能性就越大。
接下来,下面通过一个例子来介绍如何通过这个工具进行恢复。
1. 前提条件
首先,需要理解的是innodb-tools工具不是通过连接到在线的database进行数据恢复,而是通过离线拷贝数据的方式进行的。注意:不要在mysql运行的时候,直接拷贝innodb文件,这样是不安全的,会影响数据恢复过程。
为了完成数据恢复,必须知道将要被恢复的表结构(列名、数据类型)。最简单的方式就是show create table,当然后续会介绍几种可替代的方式。因此,如果有一个mysql server作为备份,即使数据是很早的甚至表中没有记录,可以有助于使用innodb-tools工具进行恢复。不过这个不是必须的。
2. 简单例子
复制代码 代码如下:

mysql> truncate table customer;

3. 构建工具
为了构建innodb-tools工具,需要依赖于c编译器、make工具等。
1、下载解压innodb-tools工具源码:
复制代码 代码如下:

wget https://launchpad.net/percona-data-recovery-tool-for-innodb/trunk/release-0.5/+download/percona-data-recovery-tool-for-innodb-0.5.tar.gztar -zxvf percona-data-recovery-tool-for-innodb-0.5.tar.gz

2、进入解压后根目录下的mysql-source目录,运行配置命令(注:不运行make命令):
复制代码 代码如下:

cd percona-data-recovery-tool-for-innodb-0.5/mysql-source
./configure

3、完成配置步骤后,回到解压后的根目录,运行make命令,编译生成page_parser和constraints_parser工具:
复制代码 代码如下:

cd ..
make

page_parser工具将根据innodb的底层实现原理,解析表的页和行结构。constraints_parser工具暂时不使用,后续还需要在定义表结构之后,重新编译生成它。
如果编译过程中出现问题,点击这里。本文使用过程中没有出现问题,故不再一一列举。
4. 提取需要的页
innodb页的默认大小是16k,每个页属于一个特定表中的一个特定的index。page_parser工具通过读取数据文件,根据页头中的index id,拷贝每个页到一个单独的文件中。
如果你的mysql server被配置为innodb_file_per_table=1,那么系统已经帮你实现上述过程。所有需要的页都在.ibd文件,而且通常你不需要再切分它。然而,如果.ibd文件中可能包含多个index,那么将页单独切分开还是有必要的。如果mysql server没有配置innodb_file_per_table,那么数据会被保存在一个全局的表命名空间(通常是一个名为ibdata1的文件,本文属于这种情况),这时候就需要按页对文件进行切分。
4.1 切分页
运行page_parser工具进行切分:
•如果mysql是5.0之前的版本,innodb采取的是redundant格式,运行以下命令:
复制代码 代码如下:

./page_parser -4 -f /path/to/ibdata1

•如果mysql是5.0版本,innodb采取的是compact格式,运行以下命令:
复制代码 代码如下:

./page_parser -5 -f /path/to/ibdata1

运行后,page_parser工具会创建一个pages-<timestamp>的目录,其中timestamp是unix系统时间戳。在这个目录下,为每个index id,以页的index id创建一个子目录。例如:
复制代码 代码如下:

pages-1330842944/fil_page_index/0-1/1-00000008.page
pages-1330842944/fil_page_index/0-1/6-00000008.page

4.2 选择需要的index id
一般来说,我们需要根据表的主键(primary index)进行恢复,主键中包含了所有的行。以下是一些可以实现的步骤:
如果数据库仍处于运行状态,并且表没有被drop掉,那么可以启动innodb tablespace monitor,输出所有表和indexes,index ids到mysql server的错误日志文件。创建innodb_table_monitor表用于收集innodb存储引擎表及其索引的存储方式:
复制代码 代码如下:

mysql> create table innodb_table_monitor (id int) engine=innodb;

如果innodb_table_monitor已经存在,drop表然后重新create表。等mysql错误日志输出后,可以drop掉这张表以停止打印输出更多的监控。一个输出的例子如下:
复制代码 代码如下:

table: name sakila/customer, id 0 142, columns 13, indexes 4, appr.rows 0
  columns: customer_id: data_int len 2 prec 0; store_id: data_int len 1 prec 0; first_name: type 12 len 135 prec 0; last_name: type 12 len 135 prec 0; email:
 type 12 len 150 prec 0; address_id: data_int len 2 prec 0; active: data_int len 1 prec 0; create_date: data_int len 8 prec 0; last_update: data_int len 4 pr
ec 0; db_row_id: data_sys prtype 256 len 6 prec 0; db_trx_id: data_sys prtype 257 len 6 prec 0; db_roll_ptr: data_sys prtype 258 len 7 prec 0;
  index: name primary, id 0 286, fields 1/11, type 3
   root page 50, appr.key vals 0, leaf pages 1, size pages 1
   fields:  customer_id db_trx_id db_roll_ptr store_id first_name last_name email address_id active create_date last_update
  index: name idx_fk_store_id, id 0 287, fields 1/2, type 0
   root page 56, appr.key vals 0, leaf pages 1, size pages 1
   fields:  store_id customer_id
  index: name idx_fk_address_id, id 0 288, fields 1/2, type 0
   root page 63, appr.key vals 0, leaf pages 1, size pages 1
   fields:  address_id customer_id
  index: name idx_last_name, id 0 289, fields 1/2, type 0
   root page 1493, appr.key vals 0, leaf pages 1, size pages 1
   fields:  last_name customer_id

这里,我们恢复的是sakila库下的customer表,从上面可以获取其主键信息:
复制代码 代码如下:

index: name primary, id 0 286, fields 1/11, type 3

index id是0 256,因此我们需要恢复的innodb页位于0-256子目录下。
备注:参考文档原文中之描述了以上这种获取表的index id的方法,本文在实际操作中,采取了更简单的一种方式,即直接恢复page_parser生成的所有innodb页。实践证明这种方法也是可行的:)
5. 生成表定义
步骤4中,我们已经找到了需要的数据,接下来需要找到表结构,创建表定义,将其编译到constraints_parser中,然后使用这个工具从innodb页中提取表中的行。
表定义包含了表中的列、列顺序、数据类型。如果mysql server仍处于运行且表未被drop掉,那么简单实用show create table就可以收集到这些信息。接下来将使用这些表结构信息来创建一个c结构体标识的表定义,然后编译到constraints_parser工具。c结构体的定义存放在include/table_defs.h中。
最简单的方式是create_defs.pl perl 脚本,连接到mysql server,读取show create table的结果,输出生成的表定义到标准输出。下面是个例子,其中直接将结果重定向到了include/table_defs.h中:

if possible, the easiest way to create the table definition is with the create_defs.pl perl script. it connects to the mysql server and reads show create table output, and prints the generated definition to its standard output. here is an example:
复制代码 代码如下:

$ ./create_defs.pl --host=localhost --user=root --password=123456 --db=sakila --table=customer > include/table_defs.h

下面是例子中的表结构:
复制代码 代码如下:

create table `customer` (
  `customer_id` smallint(5) unsigned not null auto_increment,
  `store_id` tinyint(3) unsigned not null,
  `first_name` varchar(45) not null,
  `last_name` varchar(45) not null,
  `email` varchar(50) default null,
  `address_id` smallint(5) unsigned not null,
  `active` tinyint(1) not null default '1',
  `create_date` datetime not null,
  `last_update` timestamp not null default current_timestamp on update current_timestamp,
  primary key  (`customer_id`),
  key `idx_fk_store_id` (`store_id`),
  key `idx_fk_address_id` (`address_id`),
  key `idx_last_name` (`last_name`),
  constraint `fk_customer_address` foreign key (`address_id`) references `address` (`address_id`) on update cascade,
  constraint `fk_customer_store` foreign key (`store_id`) references `store` (`store_id`) on update cascade
) engine=innodb default charset=utf8

下面是生成的表定义:
复制代码 代码如下:

#ifndef table_defs_h
#define table_defs_h
// table definitions
table_def_t table_definitions[] = {
        {
                name: "customer",
                {
                        { /* smallint(5) unsigned */
                                name: "customer_id",
                                type: ft_uint,
                                fixed_length: 2,
                                has_limits: true,
                                limits: {
                                        can_be_null: false,
                                        uint_min_val: 0,
                                        uint_max_val: 65535
                                },
                                can_be_null: false
                        },
                        { /* innodb's internally used field */
                                name: "db_trx_id",
                                type: ft_internal,
                                fixed_length: 6,
                                can_be_null: false
                        },
                        { /* innodb's internally used field */
                                name: "db_roll_ptr",
                                type: ft_internal,
                                fixed_length: 7,
                                can_be_null: false
                        },
                        { /* tinyint(3) unsigned */
                                name: "store_id",
                                type: ft_uint,
                                fixed_length: 1,
                                has_limits: true,
                                limits: {
                                        can_be_null: false,
                                        uint_min_val: 0,
                                        uint_max_val: 255
                                },
                                can_be_null: false
                        },
                        { /* varchar(45) */
                                name: "first_name",
                                type: ft_char,
                                min_length: 0,
                                max_length: 45,
                                has_limits: true,
                                limits: {
                                        can_be_null: false,
                                        char_min_len: 0,
                                        char_max_len: 45,
                                        char_ascii_only: true
                                },
                                can_be_null: false
                        },
                        { /* varchar(45) */
                                name: "last_name",
                                type: ft_char,
                                min_length: 0,
                                max_length: 45,
                                has_limits: true,
                                limits: {
                                        can_be_null: false,
                                        char_min_len: 0,
                                        char_max_len: 45,
                                        char_ascii_only: true
                                },
                                can_be_null: false
                        },
                        { /* varchar(50) */
                                name: "email",
                                type: ft_char,
                                min_length: 0,
                                max_length: 50,
                                has_limits: true,
                                limits: {
                                        can_be_null: true,
                                        char_min_len: 0,
                                        char_max_len: 50,
                                        char_ascii_only: true
                                },
                                can_be_null: true
                        },
                        { /* smallint(5) unsigned */
                                name: "address_id",
                                type: ft_uint,
                                fixed_length: 2,
                                has_limits: true,
                                limits: {
                                        can_be_null: false,
                                        uint_min_val: 0,
                                        uint_max_val: 65535
                                },
                                can_be_null: false
                        },
                        { /* tinyint(1) */
                                name: "active",
                                type: ft_int,
                                fixed_length: 1,
                                can_be_null: false
                        },
                        { /* datetime */
                                name: "create_date",
                                type: ft_datetime,
                                fixed_length: 8,
                                can_be_null: false
                        },
                        { /* timestamp */
                                name: "last_update",
                                type: ft_uint,
                                fixed_length: 4,
                                can_be_null: false
                        },
                        { type: ft_none }
                }
        },
};
#endif

如果需要,可以根据需要编辑修改include/table_defs.h;然后根据include/table_defs.h,重新编译constraints_parser工具:
复制代码 代码如下:

$ make
gcc -dhave_offset64_t -d_file_offset_bits=64 -d_largefile64_source=1 -d_largefile_source=1 -g -i include -i mysql-source/include -i mysql-source/innobase/include -c tables_dict.c -o lib/tables_dict.o
gcc -dhave_offset64_t -d_file_offset_bits=64 -d_largefile64_source=1 -d_largefile_source=1 -g -i include -i mysql-source/include -i mysql-source/innobase/include -o constraints_parser constraints_parser.c lib/tables_dict.o lib/print_data.o lib/check_data.o lib/libut.a lib/libmystrings.a
gcc -dhave_offset64_t -d_file_offset_bits=64 -d_largefile64_source=1 -d_largefile_source=1 -g -i include -i mysql-source/include -i mysql-source/innobase/include -o page_parser page_parser.c lib/tables_dict.o lib/libut.a

6. 从页中提取行记录
6.1 合并页到一个文件
前面已经提到,我们需要恢复的index id 0 286,包含数据的页位于pages-1246363747/0-286/ 目录。
复制代码 代码如下:

total 120
-rw-r--r-- 1 root root 16384 jun 30 05:09 1254-00001254.page
-rw-r--r-- 1 root root 16384 jun 30 05:09 1255-00001255.page
-rw-r--r-- 1 root root 16384 jun 30 05:09 1256-00001256.page
-rw-r--r-- 1 root root 16384 jun 30 05:09 1257-00001257.page
-rw-r--r-- 1 root root 16384 jun 30 05:09 50-00000050.page
-rw-r--r-- 1 root root 16384 jun 30 05:09 74-00000050.page

输入以下命令进行合并页:
复制代码 代码如下:

$ find pages-1246363747/0-286/ -type f -name '*.page' | sort -n | xargs cat > pages-1246363747/0-286/customer_pages_concatenated

生成的结果文件:pages-1246363747/0-286/customer_pages_concatenated,将作为constraints_parser工具的输入。
6.2 运行constraints_parser工具
下面到恢复数据最核心的步骤——运行constraints_parser工具以提取行记录。和page_parser工具一样,需要通过-5或-4参数指定innodb页格式(compact/redundant),-f指定输入文件。
回到例子中,我们可以这样运行constraints_parser工具(下面的命令是恢复一个单一的页,也可以直接恢复经过6.1步骤合并所有页之后的文件):
复制代码 代码如下:

$ ./constraints_parser -5 -f pages-1246363747/0-286/50-00000050.page

输出结果中每行包含表名以及表中的各个列。备注:其中可能有正确的行记录,也可能有不正确的行记录。官方文档中这个章节给出了如何调整表定义获取尽可能多的有效数据,同时过滤掉垃圾行,这里不再详细描述。
复制代码 代码如下:

customer        0       120     ""      ""      ""      32770   0       "0000-00-00 00:12:80"   0
customer        0       0       ""      ""      ""      0       0       "9120-22-48 29:44:00"   2
customer        61953   0       ""      ""      ""      2816    0       "7952-32-67 11:43:49"   0
customer        0       0       ""      ""      ""      0       0       "0000-00-00 00:00:00"   0
... snip ...
customer        0       0       ""      ""      ""      0       0       "0000-00-00 00:00:00"   16777728
customer        28262   114     ""      ""      null    25965   117     "4603-91-96 76:21:28"   5111809
customer        0       82      ""      ""      ""      22867   77      "2775-94-58 03:19:18"   1397573972
customer        2       1       "patricia"      "johnson"       "patricia.johnson@sakilacustomer.org"   6       1       "2006-02-14 22:04:36"   1140008240
customer        3       1       "linda" "williams"      "linda.williams@sakilacustomer.org"     7       1       "2006-02-14 22:04:36"   1140008240
customer        4       2       "barbara"       "jones" "barbara.jones@sakilacustomer.org"      8       1       "2006-02-14 22:04:36"   1140008240
customer        5       1       "elizabeth"     "brown" "elizabeth.brown@sakilacustomer.org"    9       1       "2006-02-14 22:04:36"   1140008240
customer        6       2       "jennifer"      "davis" "jennifer.davis@sakilacustomer.org"     10      1       "2006-02-14 22:04:36"   1140008240
customer        7       1       "maria" "miller"        "maria.miller@sakilacustomer.org"       11      1       "2006-02-14 22:04:36"   1140008240
customer        8       2       "susan" "wilson"        "susan.wilson@sakilacustomer.org"       12      1       "2006-02-14 22:04:36"   1140008240
customer        9       2       "margaret"      "moore" "margaret.moore@sakilacustomer.org"     13      1       "2006-02-14 22:04:36"   1140008240
... snip ...
customer        0       0       ""      ""      ""      0       0       "0000-00-00 00:00:00"   0
customer        0       0       ""      ""      ""      0       0       "7679-35-98 86:44:53"   720578985

7. 导入数据到数据库中
最后,为了完成数据恢复,需要将步骤6中constraints_parser工具的输出结果,使用load data infile命令导入到数据库中。命令如下:
复制代码 代码如下:

load data infile '/tmp/customer_data.tsv'
replace into table customer
fields terminated by '\t'
optionally enclosed by '"'
lines starting by 'customer\t'
(customer_id, store_id, first_name, last_name, email,
   address_id, active, create_date, @last_update)
set last_update = from_unixtime(@last_update); 

至此,完成了数据的恢复和导入过程。希望大家不会有机会去实践这篇文章介绍的方法。