博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
【转】mysql的cardinality异常,导致索引不可用
阅读量:6509 次
发布时间:2019-06-24

本文共 2205 字,大约阅读时间需要 7 分钟。

 转自:http://ourmysql.com/archives/1343

   前段时间,一大早上,就收到报警,警告php-fpm进程的数量超过阈值。最终发现是一条sql没用到索引,导致执行数据库查询慢了,最终导致php-fpm进程数增加。最终通过analyze table feed_comment_info_id_0000 命令更新了Cardinality ,才能再次用到索引。

   排查过程如下:

   sql语句:

select id from feed_comment_info_id_0000 where obj_id=101 and type=1;

   索引信息:

show index from feed_comment_info_id_0000+---------------------------+------------+----------+--------------+-------------+-----------+-------------+----------+--------+------+------------+---------+| Table | Non_unique | Key_name | Seq_in_index | Column_name | Collation | Cardinality | Sub_part | Packed | Null | Index_type | Comment |+---------------------------+------------+----------+--------------+-------------+-----------+-------------+----------+--------+------+------------+---------+| feed_comment_info_id_0000 | 0 | PRIMARY  | 1 | id      | A | 6216 | NULL | NULL |     | BTREE | | | feed_comment_info_id_0000 | 1 | obj_type | 1 | obj_id  | A | 6216 | NULL | NULL |     | BTREE | | | feed_comment_info_id_0000 | 1 | obj_type | 2 | type    | A | 6216 | NULL | NULL | YES | BTREE | | | feed_comment_info_id_0000 | 1 | user_id  | 1 | user_id | A | 6216 | NULL | NULL |     | BTREE | | +---------------------------+------------+----------+--------------+-------------+-----------+-------------+----------+--------+------+------------+---------+5 rows in set (0.00 sec)

   通过explian查看时,发现sql用的是主键PRIMARY,而不是obj_type索引。通过show index 查看索引的Cardinality值,发现这个值是实际数据的两倍。感觉这个Cardinality值已经不正常,因此通过analyzea table命令对这个值从新进行了计算。命令执行完毕后,就可用使用索引了。

   Cardinality解释

   官方文档的解释:

   An estimate of the number of unique values in the index. This is updated by running ANALYZE TABLE or myisamchk -a. Cardinality is counted based on statistics stored as integers, so the value is not necessarily exact even for small tables. The higher the cardinality, the greater the chance that MySQL uses the index when doing

   总结一下:

   1、它代表的是索引中唯一值的数目的估计值。如果是myisam引擎,这个值是一个准确的值。如果是innodb引擎,这个值是一个估算的值,每次执行show index 时,可能会不一样

   2、创建Index时(primary key除外),MyISAM的表Cardinality的值为null,InnoDB的表Cardinality的值大概为行数;

   3、值的大小会影响到索引的选择

   4、创建Index时,MyISAM的表Cardinality的值为null,InnoDB的表Cardinality的值大概为行数。

   5、可以通过Analyze table来更新一张表或者mysqlcheck -Aa来进行更新整个数据库

   6、可以通过 show index 查看其值

转载地址:http://zybfo.baihongyu.com/

你可能感兴趣的文章
高逼格UILabel的闪烁动画效果
查看>>
C#综合揭秘——细说多线程
查看>>
转:ANDROID音频系统散记之四:4.0音频系统HAL初探
查看>>
Git的简单使用
查看>>
Spring JMX之二:远程访问MBean
查看>>
htc one x刷机记录
查看>>
route工具
查看>>
通过 WIN32 API 实现嵌入程序窗体
查看>>
浅析__线段树延迟标记
查看>>
Asp.net 中,在服务端向客户端写脚本的常用方法
查看>>
【Android】保存Fragment切换状态
查看>>
JAVA数组的定义及用法
查看>>
SQL Server 权限的分类
查看>>
How to properly release Excel COM objects
查看>>
powershell 将文本转换成表格的还有一种方式
查看>>
web编码(转)
查看>>
django源码解析之BigIntegerField (一)
查看>>
[我给Unity官方视频教程做中文字幕]beginner Graphics – Lessons系列之网格Meshes
查看>>
windows上运行npm Error: ENOENT, stat 'C:\Users\
查看>>
直接拿来用!十大Material Design开源项目
查看>>