MySQL8.0:倒序索引数据的数据排列方式


这里简单记录用到了我的一个工具详细见如下:
innblock和bcview前者用于窥视innodb块的物理结构后者用于查看二进制文件免得肉眼撸。

innblock | InnoDB page观察利器 //www.greatytc.com/p/c5ef92b0c769
bcview http://pan.baidu.com/s/1num76RJ


我们知道普通索引数据的排列方式是从小到大的,而倒序索引应该是从大到小的那么如何证明呢?
下面我们就来一窥物理文件的组织方式,我们用一个小索引就在一个块里面来证明。

一、准备数据

mysql> create table tab_desc
    -> (id1 int,
    ->  id2 int,
    ->  key(id1),
    ->  key(id2 desc));
Query OK, 0 rows affected (1.29 sec)

mysql> select * from tab_desc;
+------+------+
| id1  | id2  |
+------+------+
|    1 |    1 |
|    2 |    2 |
|    3 |    3 |
|    4 |    4 |
|    5 |    5 |
|    6 |    6 |
|    7 |    7 |
+------+------+

二、通过执行计划证明

这个比较简单我们使用using index type index 来访问索引发现他们确实是相反

mysql> desc select id2 from tab_desc;
+----+-------------+----------+------------+-------+---------------+------+---------+------+------+----------+-------------+
| id | select_type | table    | partitions | type  | possible_keys | key  | key_len | ref  | rows | filtered | Extra       |
+----+-------------+----------+------------+-------+---------------+------+---------+------+------+----------+-------------+
|  1 | SIMPLE      | tab_desc | NULL       | index | NULL          | id2  | 5       | NULL |    7 |   100.00 | Using index |
+----+-------------+----------+------------+-------+---------------+------+---------+------+------+----------+-------------+
1 row in set, 1 warning (0.11 sec)

mysql> select id2 from tab_desc;
+------+
| id2  |
+------+
|    7 |
|    6 |
|    5 |
|    4 |
|    3 |
|    2 |
|    1 |
+------+
7 rows in set (0.00 sec)

mysql> desc select id1 from tab_desc;
+----+-------------+----------+------------+-------+---------------+------+---------+------+------+----------+-------------+
| id | select_type | table    | partitions | type  | possible_keys | key  | key_len | ref  | rows | filtered | Extra       |
+----+-------------+----------+------------+-------+---------------+------+---------+------+------+----------+-------------+
|  1 | SIMPLE      | tab_desc | NULL       | index | NULL          | id1  | 5       | NULL |    7 |   100.00 | Using index |
+----+-------------+----------+------------+-------+---------------+------+---------+------+------+----------+-------------+
1 row in set, 1 warning (0.00 sec)

mysql> select id1 from tab_desc;
+------+
| id1  |
+------+
|    1 |
|    2 |
|    3 |
|    4 |
|    5 |
|    6 |
|    7 |
+------+
7 rows in set (0.00 sec)

三、通过工具证明

执行 ./innblock tab_desc.ibd scan 16得到结果
===INDEX_ID:136
level0 total block is (1)
block_no:         4,level:   0|*|
===INDEX_ID:137
level0 total block is (1)
block_no:         5,level:   0|*|
===INDEX_ID:138
level0 total block is (1)
block_no:         6,level:   0|*|
通过INNODB_INDEXES可以看到这两个索引对应的ID确实是137/138

|      136 | GEN_CLUST_INDEX |     1059 |    1 |        5 |       4 |     2 |              50 |
|      137 | id1             |     1059 |    0 |        2 |       5 |     2 |              50 |
|      138 | id2             |     1059 |    0 |        2 |       6 |     2 |              50 |

通过命令 ./innblock tab_desc.ibd 5 16和 ./innblock tab_desc.ibd 6 16可以获得他们的逻辑链表信息如下:
id1
==== Block list info ====
-----Total used rows:9 used rows list(logic):
(1) INFIMUM record offset:99 heapno:0 n_owned 1,delflag:N minflag:0 rectype:2
(2) normal record offset:126 heapno:2 n_owned 0,delflag:N minflag:0 rectype:0 
(3) normal record offset:142 heapno:3 n_owned 0,delflag:N minflag:0 rectype:0
(4) normal record offset:158 heapno:4 n_owned 0,delflag:N minflag:0 rectype:0
(5) normal record offset:174 heapno:5 n_owned 0,delflag:N minflag:0 rectype:0
(6) normal record offset:190 heapno:6 n_owned 0,delflag:N minflag:0 rectype:0
(7) normal record offset:206 heapno:7 n_owned 0,delflag:N minflag:0 rectype:0
(8) normal record offset:222 heapno:8 n_owned 0,delflag:N minflag:0 rectype:0 
(9) SUPREMUM record offset:112 heapno:1 n_owned 8,delflag:N minflag:0 rectype:3

id2
==== Block list info ====
-----Total used rows:9 used rows list(logic):
(1) INFIMUM record offset:99 heapno:0 n_owned 1,delflag:N minflag:0 rectype:2
(2) normal record offset:222 heapno:8 n_owned 0,delflag:N minflag:0 rectype:0 
(3) normal record offset:206 heapno:7 n_owned 0,delflag:N minflag:0 rectype:0
(4) normal record offset:190 heapno:6 n_owned 0,delflag:N minflag:0 rectype:0
(5) normal record offset:174 heapno:5 n_owned 0,delflag:N minflag:0 rectype:0
(6) normal record offset:158 heapno:4 n_owned 0,delflag:N minflag:0 rectype:0
(7) normal record offset:142 heapno:3 n_owned 0,delflag:N minflag:0 rectype:0
(8) normal record offset:126 heapno:2 n_owned 0,delflag:N minflag:0 rectype:0  
(9) SUPREMUM record offset:112 heapno:1 n_owned 8,delflag:N minflag:0 rectype:3

我们可以看到ID1普通索引逻辑链表信息为:
INFIMUM ->126 ->142 ->158 .....->SUPREMUM
而我们的反向索引逻辑链表信息为:
INFIMUM ->222->206 ->190 .....->SUPREMUM

那么我们分别来解读下数据因为普通索引的数据域排列方式就是:数据+主键 而int代表的是4字节那么
id1的数据就是 (这里用到了一个自己的工具bcview方便观察,当然非要肉眼撸也是也可以的用hexdump):

  • 第一行 126字节后的4字节为:80000001
    current block:00000005--Offset:00126--cnt bytes:04--data is:80000001
  • 第二行 142字节后的4个字节:80000002
    current block:00000005--Offset:00142--cnt bytes:04--data is:80000002
  • 第三行 158字节后的4个字节:80000003
    current block:00000005--Offset:00158--cnt bytes:04--data is:80000003
  • 第四行 174字节后的4个字节:80000004
    current block:00000005--Offset:00174--cnt bytes:04--data is:80000004

后面的我就不查询了可以看到是从小到大的。

接下来我们分解下倒序索引的数据:

  • 第一行 222字节后的4字节为: 80000007
    current block:00000006--Offset:00222--cnt bytes:04--data is:80000007
  • 第二行 206字节后的4个字节: 80000006
    current block:00000006--Offset:00206--cnt bytes:04--data is:80000006
  • 第三行 190字节后的4个字节: 80000005
    current block:00000006--Offset:00190--cnt bytes:04--data is:80000005
  • 第四行 174字节后的4个字节: 80000004
    current block:00000006--Offset:00174--cnt bytes:04--data is:80000004

因此我们得到验证,对于倒序索引而言其数据是在INFIMUM和SUPREMUM降序排列的。

作者微信:gaopp_22389860

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 211,423评论 6 491
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,147评论 2 385
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 157,019评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,443评论 1 283
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 65,535评论 6 385
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 49,798评论 1 290
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,941评论 3 407
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,704评论 0 266
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,152评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,494评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,629评论 1 340
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,295评论 4 329
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,901评论 3 313
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,742评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,978评论 1 266
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,333评论 2 360
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,499评论 2 348