ibd2sdi 是一个从 InnoDB
表空间文件中提取 序列化词典信息 (SDI) 的实用程序。SDI 数据存在于所有持久的 InnoDB
表空间文件中。
ibd2sdi 可以在 每个表文件 表空间文件 (*.ibd
文件)、 通用表空间 文件 (*.ibd
文件)、 系统表空间 文件 (ibdata*
文件) 和数据词典表空间 (mysql.ibd
) 上运行。它不支持临时表空间或撤销表空间。
ibd2sdi 可以在运行时或服务器离线时使用。在 DDL 操作、 ROLLBACK
操作和撤销日志清除操作相关的 SDI 期间,可能会有一个短暂的时间间隔, ibd2sdi 无法读取表空间中的 SDI 数据。
ibd2sdi 执行未提交的 SDI 读取指定的表空间。重做日志和撤销日志不被访问。
调用 ibd2sdi 实用程序如下:
ibd2sdi [options] file_name1 [file_name2 file_name3 ...]
ibd2sdi 支持多文件表空间,如 InnoDB
系统表空间,但它不能在多个表空间上同时运行。对于多文件表空间,指定每个文件:
ibd2sdi ibdata1 ibdata2
多文件表空间的文件必须按升序页号顺序指定。如果两个连续文件具有相同的空间 ID,则后一个文件必须从前一个文件的最后一页号 + 1 开始。
ibd2sdi 以 JSON
格式输出 SDI(包含 id、type 和数据字段)。
ibd2sdi 选项
ibd2sdi 支持以下选项:
-
--help
,-h
Command-Line Format --help
Type 布尔值 Default Value false
显示帮助信息并退出。例如:
Usage: ./ibd2sdi [-v] [-c <strict-check>] [-d <dump file name>] [-n] filename1 [filenames] See http://dev.mysql.com/doc/refman/8.0/en/ibd2sdi.html for usage hints. -h, --help Display this help and exit. -v, --version Display version information and exit. -#, --debug[=name] Output debug log. See http://dev.mysql.com/doc/refman/8.0/en/dbug-package.html -d, --dump-file=name Dump the tablespace SDI into the file passed by user. Without the filename, it will default to stdout -s, --skip-data Skip retrieving data from SDI records. Retrieve only id and type. -i, --id=# Retrieve the SDI record matching the id passed by user. -t, --type=# Retrieve the SDI records matching the type passed by user. -c, --strict-check=name Specify the strict checksum algorithm by the user. Allowed values are innodb, crc32, none. -n, --no-check Ignore the checksum verification. -p, --pretty Pretty format the SDI output.If false, SDI would be not human readable but it will be of less size (Defaults to on; use --skip-pretty to disable.) Variables (--variable-name=value) and boolean options {FALSE|TRUE} Value (after reading options) --------------------------------- ---------------------------------------- debug (No default value) dump-file (No default value) skip-data FALSE id 0 type 0 strict-check crc32 no-check FALSE pretty TRUE
-
--version
,-v
Command-Line Format --version
Type 布尔值 Default Value false
显示版本信息并退出。例如:
ibd2sdi Ver 8.0.3-dmr for Linux on x86_64 (Source distribution)
-
--debug[=
,debug_options
]-# [
debug_options
]Command-Line Format --debug=options
Type 字符串 Default Value [none]
打印调试日志。有关调试选项,请参阅 第 7.9.4 节,“The DBUG Package”。
ibd2sdi --debug=d:t /tmp/ibd2sdi.trace
只有在 MySQL 使用
WITH_DEBUG
选项构建时,才可用。Oracle 提供的 MySQL 发行二进制文件 不 使用这个选项。 -
--转储文件=
,-d
Command-Line Format --转储文件=file
Type 文件名 Default Value [none]
将序列化字典信息(SDI)转储到指定的转储文件中。如果没有指定转储文件,将表空间SDI转储到
stdout
。ibd2sdi --dump-file=file_name ../data/test/t1.ibd
-
--跳过数据
,-s
Command-Line Format --跳过数据
Type 布尔值 Default Value false
跳过从序列化字典信息(SDI)中检索
数据
字段值,只检索id
和type
字段值,这些是 SDI 记录的主键。$> ibd2sdi --skip-data ../data/test/t1.ibd ["ibd2sdi" , { "type": 1, "id": 330 } , { "type": 2, "id": 7 } ]
-
--id=
,#
-i
#
Command-Line Format --id=#
Type 整数 Default Value 0
检索与指定的表或表空间对象 ID 匹配的序列化字典信息(SDI)。对象 ID 是对象类型的唯一标识符。表和表空间对象 ID 也可以在
mysql.tables
和mysql.tablespace
数据字典表的id
列中找到。有关数据字典表的信息,请参阅 第 16.1 节,“数据字典架构”。$> ibd2sdi --id=7 ../data/test/t1.ibd ["ibd2sdi" , { "type": 2, "id": 7, "object": { "mysqld_version_id": 80003, "dd_version": 80003, "sdi_version": 1, "dd_object_type": "Tablespace", "dd_object": { "name": "test/t1", "comment": "", "options": "", "se_private_data": "flags=16417;id=2;server_version=80003;space_version=1;", "engine": "InnoDB", "files": [ { "ordinal_position": 1, "filename": "./test/t1.ibd", "se_private_data": "id=2;" } ] } } } ]
-
--type=
,#
-t
#
Command-Line Format --type=#
Type 枚举 Default Value 0
Valid Values 1
2
检索与指定对象类型匹配的序列化字典信息(SDI)。SDI 提供了表(type=1)和表空间(type=2)对象。
以下示例显示了测试数据库中的表空间
ts1
的输出:$> ibd2sdi --type=2 ../data/test/ts1.ibd ["ibd2sdi" , { "type": 2, "id": 7, "object": { "mysqld_version_id": 80003, "dd_version": 80003, "sdi_version": 1, "dd_object_type": "Tablespace", "dd_object": { "name": "test/ts1", "comment": "", "options": "", "se_private_data": "flags=16417;id=2;server_version=80003;space_version=1;", "engine": "InnoDB", "files": [ { "ordinal_position": 1, "filename": "./test/ts1.ibd", "se_private_data": "id=2;" } ] } } } ]
由于 InnoDB 存储引擎处理默认值元数据的方式,可能在 ibd2sdi 输出中看到一个表列的默认值,即使它没有使用
DEFAULT
定义。考虑以下两个表的创建语句,在数据库i
中:CREATE TABLE t1 (c VARCHAR(16) NOT NULL); CREATE TABLE t2 (c VARCHAR(16) NOT NULL DEFAULT "Sakila");
使用 ibd2sdi, 我们可以看到列
c
的default_value
不为空,并且在两个表中都被填充到长度,如下所示:$> ibd2sdi ../data/i/t1.ibd | grep -m1 '\"default_value\"' | cut -b34- | sed -e s/,// "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\nAAAAAAAAAAA=" $> ibd2sdi ../data/i/t2.ibd | grep -m1 '\"default_value\"' | cut -b34- | sed -e s/,// "BlNha2lsYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\nAAAAAAAAAAA="
使用 JSON 感知实用程序 jq 查看 ibd2sdi 输出可能更容易,如下所示:
$> ibd2sdi ../data/i/t1.ibd | jq '.[1]["object"]["dd_object"]["columns"][0]["default_value"]' "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\nAAAAAAAAAAA=" $> ibd2sdi ../data/i/t2.ibd | jq '.[1]["object"]["dd_object"]["columns"][0]["default_value"]' "BlNha2lsYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\nAAAAAAAAAAA="
有关更多信息,请参阅 MySQL Internals 文档。
-
--严格检查
,-c
Command-Line Format --严格检查=算法
Type 枚举 Default Value crc32
Valid Values crc32
innodb
none
指定用于验证页面 checksum 的严格算法。选项包括
innodb
、crc32
和none
。在这个示例中,指定了严格的
innodb
checksum 算法:ibd2sdi --strict-check=innodb ../data/test/t1.ibd
在这个示例中,指定了严格的
crc32
checksum 算法:ibd2sdi -c crc32 ../data/test/t1.ibd
如果您不指定
--严格检查
选项,将对非严格innodb
、crc32
和none
checksum 进行验证。 -
--不检查
,-n
Command-Line Format --不检查
Type 布尔值 Default Value false
跳过读取页面的校验和验证。
ibd2sdi --no-check ../data/test/t1.ibd
-
--美化
,-p
Command-Line Format --美化
Type 布尔值 Default Value false
以 JSON 美化打印格式输出 SDI 数据。默认启用。如果禁用,SDI 数据将不可读,但体积较小。使用
--skip-pretty
禁用。ibd2sdi --skip-pretty ../data/test/t1.ibd