随笔:sending data状态包含了使用内部临时表

本文涉及的产品
RDS MySQL Serverless 基础系列,0.5-2RCU 50GB
云数据库 RDS MySQL,集群系列 2核4GB
推荐场景:
搭建个人博客
RDS MySQL Serverless 高可用系列,价值2615元额度,1个月
简介: 这是一个我的随笔记录,这些过程非常有用,也非常明显。欢迎关注我的《深入理解MySQL主从原理 32讲 》,如下:语句如下:mysql> desc select id,count(*) from t110 group by id;+----+-------------+-------+...

这是一个我的随笔记录,这些过程非常有用,也非常明显。

欢迎关注我的《深入理解MySQL主从原理 32讲 》,如下:

image.png

语句如下:

mysql> desc select id,count(*) from t110 group by  id;
+----+-------------+-------+------------+------+---------------+------+---------+------+-------+----------+---------------------------------+
| id | select_type | table | partitions | type | possible_keys | key  | key_len | ref  | rows  | filtered | Extra                           |
+----+-------------+-------+------------+------+---------------+------+---------+------+-------+----------+---------------------------------+
|  1 | SIMPLE      | t110  | NULL       | ALL  | NULL          | NULL | NULL    | NULL | 99395 |   100.00 | Using temporary; Using filesort |
+----+-------------+-------+------------+------+---------------+------+---------+------+-------+----------+---------------------------------+
1 row in set, 1 warning (0.00 sec)

存入内部临时表的操作也在'sending data' 下面,下面的debug trace可以看出
操作是获取innodb层一条数据handler::ha_rnd_next,然后在内部临时表中查询
这行记录hp_search,如果存在则做相应的更改heap_update(如count累加,sum加值等)

使用内部临时表
   1249 T@3: | | | | | | | | >handler::ha_rnd_next
   1250 T@3: | | | | | | | | | >rnd_next
   1251 T@3: | | | | | | | | | | >general_fetch
   1252 T@3: | | | | | | | | | | | >row_search_mvcc
   1253 T@3: | | | | | | | | | | | | >row_sel_store_mysql_rec
   1254 T@3: | | | | | | | | | | | | | >row_sel_store_mysql_field_func
   1255 T@3: | | | | | | | | | | | | | <row_sel_store_mysql_field_func 3267
   1256 T@3: | | | | | | | | | | | | <row_sel_store_mysql_rec 3457
   1257 T@3: | | | | | | | | | | | <row_search_mvcc 6453
   1258 T@3: | | | | | | | | | | <general_fetch 9913
   1259 T@3: | | | | | | | | | <rnd_next 10086
   1260 T@3: | | | | | | | | <handler::ha_rnd_next 3159
   1261 T@3: | | | | | | | | >evaluate_join_record
   1262 T@3: | | | | | | | | | enter: join: 0x7ffe7c007778 join_tab index: 0 table: t112 cond: 0x0
   1263 T@3: | | | | | | | | | counts: evaluate_join_record join->examined_rows++: 4
   1264 T@3: | | | | | | | | | >sub_select_op
   1265 T@3: | | | | | | | | | | >end_update
   1266 T@3: | | | | | | | | | | | >handler::ha_index_read_map
   1267 T@3: | | | | | | | | | | | | >heap_rkey
   1268 T@3: | | | | | | | | | | | | | enter: info: 0x7ffe7caa74d0  inx: 0
   1269 T@3: | | | | | | | | | | | | | >hp_search
   1270 T@3: | | | | | | | | | | | | | | exit: hash: 0x105050504
   1271 T@3: | | | | | | | | | | | | | | exit: found key at 0x7ffe7ceb4880
   1272 T@3: | | | | | | | | | | | | | <hp_search 124
   1273 T@3: | | | | | | | | | | | | | >hp_extract_record
   1274 T@3: | | | | | | | | | | | | | <hp_extract_record 369
   1275 T@3: | | | | | | | | | | | | <heap_rkey 81
   1276 T@3: | | | | | | | | | | | <handler::ha_index_read_map 3261
   1277 T@3: | | | | | | | | | | | >hanlder::ha_update_row
   1278 T@3: | | | | | | | | | | | | >heap_update
   1279 T@3: | | | | | | | | | | | | | >hp_copy_record_data_to_chunks
   1280 T@3: | | | | | | | | | | | | | <hp_copy_record_data_to_chunks 308
   1281 T@3: | | | | | | | | | | | | <heap_update 79
   1282 T@3: | | | | | | | | | | | <hanlder::ha_update_row 8518
   1283 T@3: | | | | | | | | | | <end_update 3482
   1284 T@3: | | | | | | | | | <sub_select_op 1085
   1285 T@3: | | | | | | | | <evaluate_join_record 1707

下面是count(*)累加关于heap_update old值和new值的查看

Breakpoint 2, heap_update (info=0x7ffe7c9a9620, old_record=0x7ffe7c00f3b8  <incomplete sequence \375>, new_record=0x7ffe7c00f3a0  <incomplete sequence \375>)
    at /root/mysqlall/percona-server-locks-detail-5.7.22/storage/heap/hp_update.c:24
24        my_bool auto_key_changed= 0;
(gdb) x/16bx 0x7ffe7c00f3b8
0x7ffe7c00f3b8: 0xfd    0x00    0x01    0x00    0x00    0x00    0x01    0x00
0x7ffe7c00f3c0: 0x00    0x00    0x00    0x00    0x00    0x00    0x00    0x00
(gdb) x/16bx 0x7ffe7c00f3a0
0x7ffe7c00f3a0: 0xfd    0x00    0x01    0x00    0x00    0x00    0x02    0x00
0x7ffe7c00f3a8: 0x00    0x00    0x00    0x00    0x00    0x00    0x00    0x00
(gdb) c
Continuing.

Breakpoint 2, heap_update (info=0x7ffe7c9a9620, old_record=0x7ffe7c00f3b8  <incomplete sequence \375>, new_record=0x7ffe7c00f3a0  <incomplete sequence \375>)
    at /root/mysqlall/percona-server-locks-detail-5.7.22/storage/heap/hp_update.c:24
24        my_bool auto_key_changed= 0;
(gdb) x/16bx 0x7ffe7c00f3b8
0x7ffe7c00f3b8: 0xfd    0x00    0x01    0x00    0x00    0x00    0x02    0x00
0x7ffe7c00f3c0: 0x00    0x00    0x00    0x00    0x00    0x00    0x00    0x00
(gdb) x/16bx 0x7ffe7c00f3a0
0x7ffe7c00f3a0: 0xfd    0x00    0x01    0x00    0x00    0x00    0x03    0x00
0x7ffe7c00f3a8: 0x00    0x00    0x00    0x00    0x00    0x00    0x00    0x00

注意到key = 1 的这个值,第一次断点old值为0x01 new值为0x02,第二次断点old值为0x02 new值为0x03

然后遍历完所有的行过后,进入排序状态为Creating sort index

   1526 T@3: | | | | | | | | | THD::enter_stage: 'Creating sort index' /root/mysqlall/percona-server-locks-detail-5.7.22/sql/sql_executor.cc:2604
   1527 T@3: | | | | | | | | | >PROFILING::status_change
   1528 T@3: | | | | | | | | | <PROFILING::status_change 384
   1529 T@3: | | | | | | | | | >create_sort_index
   1530 T@3: | | | | | | | | | | >my_raw_malloc
   1531 T@3: | | | | | | | | | | | my: size: 376  my_flags: 48
   1532 T@3: | | | | | | | | | | | exit: ptr: 0x7ffe7c9d1a90
   1533 T@3: | | | | | | | | | | <my_raw_malloc 219
   1534 T@3: | | | | | | | | | | >heap_info
   1535 T@3: | | | | | | | | | | <heap_info 57
   1536 T@3: | | | | | | | | | | >filesort
   1537 T@3: | | | | | | | | | | | >make_sortorder
   1538 T@3: | | | | | | | | | | | | >alloc_root
   1539 T@3: | | | | | | | | | | | | | enter: root: 0x7ffe7c003c08
   1540 T@3: | | | | | | | | | | | | | exit: ptr: 0x7ffe7caa4fc8
   1541 T@3: | | | | | | | | | | | | <alloc_root 304
   1542 T@3: | | | | | | | | | | | <make_sortorder 663
   1543 T@3: | | | | | | | | | | | opt: (null): starting struct
   1544 T@3: | | | | | | | | | | | opt: filesort_information: starting struct
   1545 T@3: | | | | | | | | | | | opt: (null): starting struct
   1546 T@3: | | | | | | | | | | | opt: direction: "asc"
   1547 T@3: | | | | | | | | | | | opt: table: "intermediate_tmp_table"
   1548 T@3: | | | | | | | | | | | opt: field: "id"
   1549 T@3: | | | | | | | | | | | opt: (null): ending struct
   1550 T@3: | | | | | | | | | | | opt: filesort_information: ending struct
   1551 T@3: | | | | | | | | | | | info: sort_length: 5
相关实践学习
阿里云图数据库GDB入门与应用
图数据库(Graph Database,简称GDB)是一种支持Property Graph图模型、用于处理高度连接数据查询与存储的实时、可靠的在线数据库服务。它支持Apache TinkerPop Gremlin查询语言,可以帮您快速构建基于高度连接的数据集的应用程序。GDB非常适合社交网络、欺诈检测、推荐引擎、实时图谱、网络/IT运营这类高度互连数据集的场景。 GDB由阿里云自主研发,具备如下优势: 标准图查询语言:支持属性图,高度兼容Gremlin图查询语言。 高度优化的自研引擎:高度优化的自研图计算层和存储层,云盘多副本保障数据超高可靠,支持ACID事务。 服务高可用:支持高可用实例,节点故障迅速转移,保障业务连续性。 易运维:提供备份恢复、自动升级、监控告警、故障切换等丰富的运维功能,大幅降低运维成本。 产品主页:https://www.aliyun.com/product/gdb
相关文章
|
3月前
|
API PHP 数据库
Laravel框架下通过DB获取数据并转为数组的方法
通过上述方法,Laravel为开发者提供了一套灵活而强大的工具,用于从数据库中检索数据并将其转换为数组。无论是使用DB Facade直接执行查询,还是利用模型的方法,Laravel都能够简化这一过程,使得代码既简洁又富有表现力。在实际开发中,选择最适合你需求的方法可以有效提高开发效率和应用性能。
124 0
|
4月前
【Azure Developer】使用PowerShell Where-Object方法过滤多维ArrayList时候,遇见的诡异问题 -- 当查找结果只有一个对象时,返回结果修改了对象结构,把多维变为一维
【Azure Developer】使用PowerShell Where-Object方法过滤多维ArrayList时候,遇见的诡异问题 -- 当查找结果只有一个对象时,返回结果修改了对象结构,把多维变为一维
|
7月前
|
调度
A包含B,用block实现A和B互相调用更新数据
A包含B,用block实现A和B互相调用更新数据
40 0
|
存储 数据采集 架构师
谈谈数据项目中的Data mapping(数据映射)
企业数据正变得越来越分散和庞大。与此同时,对企业来说,利用数据并将其转化为可操作的见解,变得比以往任何时候都更加重要。
谈谈数据项目中的Data mapping(数据映射)
|
Linux
linux驱动开发--copy_to_user 、copy_from_user函数实现内核空间数据与用户空间数据的相互访问
<strong><u>设备读操作</u></strong><br><p>如果该操作为空,将使得read系统调用返回负EINVAL失败,正常返回实际读取的字节数</p> <p><strong>ssize_t (*read)(struct file *filp, char __user *buf, size_t  count, lofft *f_pos);</strong><br><span
12181 0
|
存储 关系型数据库 数据库
Data dictionary header(2) --系统表空间结构(三十四)
Data dictionary header(2) --系统表空间结构(三十四)
|
前端开发
Ember Data 之记录操作:创建、更新和删除
前面在《Ember.js 项目开发之 Ember Data》介绍了Ember Data 和 《Ember Data 之模型定义》、《Ember Data 之记录查询》,本文将继续介绍记录操作:创建、更新和删除。
146 0
|
Shell 开发工具 git
对已经add的文件不在跟踪
记录每次更新到仓库 现在我们手上已经有了一个真实项目的 Git 仓库,并从这个仓库中取出了所有文件的工作拷贝。接下来,对这些文件作些修改,在完成了一个阶段的目标之后,提交本次更新到仓库。 请记住,工作目录下面的所有文件都不外乎这两种状态:已跟踪或未跟踪。
733 0
对已经add的文件不在跟踪
|
存储 关系型数据库 MySQL
Server 层混杂信息字典表 | 全方位认识 information_schema(中)
上期《Server 层混杂信息字典表 | 全方位认识 information_schema(上)》为大家介绍了部分关于Server层混杂信息字典表的知识,本期“Server层混杂信息字典表(中)”将继续为大家介绍。
2869 0