MySQL Index Condition Pushdown 原理与解析


set optimizer_switch = 'index_condition_pushdown=off';
set optimizer_switch = 'index_condition_pushdown=on';测试过程
1.环境准备
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#mysql 5.6.25#关闭结果缓存mysql> set global query_cache_size=0; mysql> set query_cache_type=off; #查看表结构mysql> show create table employees\G*************************** 1. row *************************** Table: employeesCreate Table: CREATE TABLE `employees` ( `emp_no` int(11) NOT NULL, `birth_date` date NOT NULL, `first_name` varchar(14) NOT NULL, `last_name` varchar(16) NOT NULL, `gender` enum('M','F') NOT NULL, `hire_date` date NOT NULL, PRIMARY KEY (`emp_no`), KEY `idx_first_last_name` (`first_name`,`last_name`)) ENGINE=InnoDB DEFAULT CHARSET=utf81 row in set (0.00 sec)mysql> |
2.开启ICP后进行测试
|
1
2
3
4
5
|
mysql> set profiling = 1;mysql> select * from employees where first_name='Anneke' and last_name like '%sig' ;mysql> explain select * from employees where first_name='Anneke' and last_name like '%sig' ;mysql> show profiles;mysql> show profile cpu,block io for query 1; |
3.关闭ICP后进行测试
|
1
2
3
4
5
6
|
mysql> set optimizer_switch='index_condition_pushdown=off';mysql> set profiling = 1;mysql> select * from employees where first_name='Anneke' and last_name like '%sig' ;mysql> explain select * from employees where first_name='Anneke' and last_name like '%sig' ;mysql> show profiles;mysql> show profile cpu,block io for query 1; |
4.结果比较
开启ICP后的执行计划:执行计划中extra部分的内容是"using index condition"
|
1
2
3
4
5
6
|
mysql> explain select * from employees where first_name='Anneke' and last_name like '%sig' ;+----+-------------+-----------+------+---------------------+---------------------+---------+-------+------+-----------------------+| id | select_type | table | type | possible_keys | key | key_len | ref | rows | Extra |+----+-------------+-----------+------+---------------------+---------------------+---------+-------+------+-----------------------+| 1 | SIMPLE | employees | ref | idx_first_last_name | idx_first_last_name | 44 | const | 224 | Using index condition |+----+-------------+-----------+------+---------------------+---------------------+---------+-------+------+-----------------------+ |
关闭ICP后的执行计划:执行计划中extra部分的内容是"using where"
|
1
2
3
4
5
6
|
mysql> explain select * from employees where first_name='Anneke' and last_name like '%sig' ;+----+-------------+-----------+------+---------------------+---------------------+---------+-------+------+-------------+| id | select_type | table | type | possible_keys | key | key_len | ref | rows | Extra |+----+-------------+-----------+------+---------------------+---------------------+---------+-------+------+-------------+| 1 | SIMPLE | employees | ref | idx_first_last_name | idx_first_last_name | 44 | const | 224 | Using where |+----+-------------+-----------+------+---------------------+---------------------+---------+-------+------+-------------+ |
开启ICP后的profile内容:Sending data部分的值是0.000212s
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
mysql> show profile cpu,block io for query 1;+----------------------+----------+----------+------------+--------------+---------------+| Status | Duration | CPU_user | CPU_system | Block_ops_in | Block_ops_out |+----------------------+----------+----------+------------+--------------+---------------+| starting | 0.000114 | 0.000000 | 0.000000 | 0 | 0 || checking permissions | 0.000007 | 0.000000 | 0.000000 | 0 | 0 || Opening tables | 0.000018 | 0.000000 | 0.000000 | 0 | 0 || init | 0.000034 | 0.000000 | 0.000000 | 0 | 0 || System lock | 0.000008 | 0.000000 | 0.000000 | 0 | 0 || optimizing | 0.000023 | 0.000000 | 0.000000 | 0 | 0 || statistics | 0.000383 | 0.000000 | 0.000000 | 0 | 0 || preparing | 0.000019 | 0.000000 | 0.000000 | 0 | 0 || executing | 0.000002 | 0.000000 | 0.000000 | 0 | 0 || Sending data | 0.000212 | 0.000000 | 0.000000 | 0 | 0 || end | 0.000004 | 0.000000 | 0.000000 | 0 | 0 || query end | 0.000004 | 0.000000 | 0.000000 | 0 | 0 || closing tables | 0.000006 | 0.000000 | 0.000000 | 0 | 0 || freeing items | 0.000020 | 0.000000 | 0.000000 | 0 | 0 || cleaning up | 0.000011 | 0.000000 | 0.000000 | 0 | 0 |+----------------------+----------+----------+------------+--------------+---------------+ |
关闭ICP后的profile内容:Sending data部分的值是0.010990s
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
mysql> show profile cpu,block io for query 1;+----------------------+----------+----------+------------+--------------+---------------+| Status | Duration | CPU_user | CPU_system | Block_ops_in | Block_ops_out |+----------------------+----------+----------+------------+--------------+---------------+| starting | 0.000165 | 0.000000 | 0.000000 | 0 | 0 || checking permissions | 0.000022 | 0.000000 | 0.000000 | 0 | 0 || Opening tables | 0.000027 | 0.000000 | 0.000000 | 0 | 0 || init | 0.000039 | 0.000000 | 0.000000 | 0 | 0 || System lock | 0.000008 | 0.000000 | 0.000000 | 0 | 0 || optimizing | 0.000037 | 0.001000 | 0.000000 | 0 | 0 || statistics | 0.000483 | 0.001000 | 0.000000 | 0 | 0 || preparing | 0.000022 | 0.000000 | 0.000000 | 0 | 0 || executing | 0.000002 | 0.000000 | 0.000000 | 0 | 0 || Sending data | 0.010990 | 0.007999 | 0.002000 | 0 | 0 || end | 0.000009 | 0.000000 | 0.000000 | 0 | 0 || query end | 0.000005 | 0.000000 | 0.000000 | 0 | 0 || closing tables | 0.000008 | 0.000000 | 0.000000 | 0 | 0 || freeing items | 0.000028 | 0.000000 | 0.000000 | 0 | 0 || cleaning up | 0.000014 | 0.000000 | 0.000000 | 0 | 0 |+----------------------+----------+----------+------------+--------------+---------------+ |
其它:
当sql使用覆盖索引时,不支持ICP优化方法
|
1
2
3
4
5
6
7
8
9
10
11
12
|
mysql> explain select first_name,last_name from employees where first_name='Anneke' and last_name='Porenta' ;+----+-------------+-----------+------+---------------------+---------------------+---------+-------------+------+--------------------------+| id | select_type | table | type | possible_keys | key | key_len | ref | rows | Extra |+----+-------------+-----------+------+---------------------+---------------------+---------+-------------+------+--------------------------+| 1 | SIMPLE | employees | ref | idx_first_last_name | idx_first_last_name | 94 | const,const | 1 | Using where; Using index |+----+-------------+-----------+------+---------------------+---------------------+---------+-------------+------+--------------------------+mysql> explain select * from employees where first_name='Anneke' and last_name='Porenta' ;+----+-------------+-----------+------+---------------------+---------------------+---------+-------------+------+-----------------------+| id | select_type | table | type | possible_keys | key | key_len | ref | rows | Extra |+----+-------------+-----------+------+---------------------+---------------------+---------+-------------+------+-----------------------+| 1 | SIMPLE | employees | ref | idx_first_last_name | idx_first_last_name | 94 | const,const | 1 | Using index condition |+----+-------------+-----------+------+---------------------+---------------------+---------+-------------+------+-----------------------+ |
MySQL Index Condition Pushdown 原理与解析的更多相关文章
- MySQL Index Condition Pushdown
Index Condition Pushdown (ICP)是MySQL 5.6 版本中的新特性,是一种在存储引擎层使用索引过滤数据的一种优化方式.[Index Condition Pushdown] ...
- MySQL Index Condition Pushdown(ICP) 优化
本文是作者留下的一个坑,他去上茅坑了.茅坑是谁?你猜.
- 1229【MySQL】性能优化之 Index Condition Pushdown
转自http://blog.itpub.net/22664653/viewspace-1210844/ [MySQL]性能优化之 Index Condition Pushdown2014-07-06 ...
- 【mysql】关于Index Condition Pushdown特性
ICP简介 Index Condition Pushdown (ICP) is an optimization for the case where MySQL retrieves rows from ...
- 浅析MySQL中的Index Condition Pushdown (ICP 索引条件下推)和Multi-Range Read(MRR 索引多范围查找)查询优化
本文出处:http://www.cnblogs.com/wy123/p/7374078.html(保留出处并非什么原创作品权利,本人拙作还远远达不到,仅仅是为了链接到原文,因为后续对可能存在的一些错误 ...
- MySQL索引与Index Condition Pushdown
实际上,这个页面所讲述的是在MariaDB 5.3.3(MySQL是在5.6)开始引入的一种叫做Index Condition Pushdown(以下简称ICP)的查询优化方式.由于本身不是一个层面的 ...
- MySQL ICP(Index Condition Pushdown)特性
一.SQL的where条件提取规则 在ICP(Index Condition Pushdown,索引条件下推)特性之前,必须先搞明白根据何登成大神总结出一套放置于所有SQL语句而皆准的where查询条 ...
- MySQL 中Index Condition Pushdown (ICP 索引条件下推)和Multi-Range Read(MRR 索引多范围查找)查询优化
一.ICP优化原理 Index Condition Pushdown (ICP),也称为索引条件下推,体现在执行计划的上是会出现Using index condition(Extra列,当然Extra ...
- MySQL 查询优化之 Index Condition Pushdown
MySQL 查询优化之 Index Condition Pushdown Index Condition Pushdown限制条件 Index Condition Pushdown工作原理 ICP的开 ...
随机推荐
- 配置Nginx实现负载均衡
在关于高并发负载均衡一文中已经提到,企业在解决高并发问题时,一般有两个方向的处理策略,软件.硬件,硬件上添加负载均衡器分发大量请求,软件上可在高并发瓶颈处:数据库+web服务器两处添加解决方案,其中w ...
- Extjs5.0 学习之路【结构篇】
Extjs5.0在原有的MVC模式下增加了一个MVVM Extjs5.0项目文件执行顺序. 新增特性一 bind---data
- [置顶]
linux getline()函数
getline()函数是什么?百度百科这样解释: getline不是C库函数,而是C++库函数.它会生成一个包含一串从输入流读入的字符的字符串,直到以下情况发生会导致生成的此字符串结束.1) ...
- Rails通过页面Debug
<%= debug(headers) %>--在视图中显示伴随请求的头部信息 <%= debug(params) %>--在视图中显示请求中的参数 <%= debug(a ...
- 使用setTimeout 来实现setInterval的效果
直接上代码,实现的核心就是在延时的情况下递归的调用自己, x=0 y=-1 function countMin( ) { y=y+1 document.displayMin.displayBox.va ...
- DAY8-python之网络编程
一.客户端/服务器架构 1.硬件C/S架构(打印机) 2.软件C/S架构 互联网中处处是C/S架构 如黄色网站是服务端,你的浏览器是客户端(B/S架构也是C/S架构的一种) 腾讯作为服务端为你提供视频 ...
- JDBC连接MYSQL,批量执行SQL语句或在执行一个SQL语句之前执行一个SQL语句
conn = MysqlJdbcUtils.getConnection(); Statement ps=conn.createStatement(); ps.addBatch("trunca ...
- js分页demo
纯js实现分页 原理:所有数据已加载好,js通过遍历部分显示,实现分页效果 html代码 <html> <head> <meta charset='utf-8'> ...
- Java的JAR包, EAR包 ,WAR包 都是干什么的,有什么区别
JAR包:打成JAR包的代码,一般作为工具类,在项目中,会应用到N多JAR工具包: WAR包:JAVA WEB工程,都是打成WAR包,进行发布,如果我们的服务器选择TOMCAT等轻量级服务器,一般就打 ...
- MySQL存储引擎 -- MyISAM(表锁定) 与 InnoDB(行锁定) 锁定机制
前言 为了保证数据的一致完整性,任何一个数据库都存在锁定机制.锁定机制的优劣直接应想到一个数据库系统的并发处理能力和性能,所以锁定机制的实现也就成为了各种数据库的核心技术之一.本章将对MySQL中两种 ...