找到 MySQL 資料庫中的不良索引
為了演示,首先建兩個包含不良索引的表,並弄點資料。
mysql> show create table test1/G *************************** 1. row *************************** Table: test1 Create Table: CREATE TABLE `test1` ( `id` int(11) NOT NULL, `f1` int(11) DEFAULT NULL, `f2` int(11) DEFAULT NULL, `f3` int(11) DEFAULT NULL, PRIMARY KEY (`id`), KEY `k1` (`f1`,`id`), KEY `k2` (`id`,`f1`), KEY `k3` (`f1`), KEY `k4` (`f1`,`f3`), KEY `k5` (`f1`,`f3`,`f2`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 1 row in set (0.00 sec) mysql> show create table test2/G *************************** 1. row *************************** Table: test2 Create Table: CREATE TABLE `test2` ( `id1` int(11) NOT NULL DEFAULT '0', `id2` int(11) NOT NULL DEFAULT '0', `b` int(11) DEFAULT NULL, PRIMARY KEY (`id1`,`id2`), KEY `k1` (`b`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 1 row in set (0.00 sec) mysql> select count(*) from test2 group by b; +----------+ | count(*) | +----------+ | 32 | | 17 | +----------+ 2 rows in set (0.00 sec)
(題圖來自:webfish.se)
1. 包含主鍵的索引
innodb 本身是聚簇表,每個二級索引本身就包含主鍵,類似 f1, id 的索引實際雖然沒有害處,但反映了使用者對 mysql 索引不瞭解。而類似 id, f1 的是多餘索引,會浪費儲存空間,並影響資料更新效能。包含主鍵的索引用這樣一句 sql 就能全部找出來。
mysql> select c.*, pk from -> (select table_schema, table_name, index_name, concat('|', group_concat(column_name order by seq_in_index separator '|'), '|') cols -> from INFORMATION_SCHEMA.STATISTICS -> where index_name != 'PRIMARY' and table_schema != 'mysql' -> group by table_schema, table_name, index_name) c, -> (select table_schema, table_name, concat('|', group_concat(column_name order by seq_in_index separator '|'), '|') pk -> from INFORMATION_SCHEMA.STATISTICS -> where index_name = 'PRIMARY' and table_schema != 'mysql' -> group by table_schema, table_name) p -> where c.table_name = p.table_name and c.table_schema = p.table_schema and c.cols like concat('%', pk, '%'); +--------------+------------+------------+---------+------+ | table_schema | table_name | index_name | cols | pk | +--------------+------------+------------+---------+------+ | test | test1 | k1 | |f1|id| | |id| | | test | test1 | k2 | |id|f1| | |id| | +--------------+------------+------------+---------+------+ 2 rows in set (0.04 sec)
2. 重複索引字首
包含重複字首的索引,索引能由另一個包含該字首的索引完全代替,是多餘索引。多餘的索引會浪費儲存空間,並影響資料更新效能。這樣的索引同樣用一句 sql 可以找出來。
mysql> select c1.table_schema, c1.table_name, c1.index_name,c1.cols,c2.index_name, c2.cols from -> (select table_schema, table_name, index_name, concat('|', group_concat(column_name order by seq_in_index separator '|'), '|') cols -> from INFORMATION_SCHEMA.STATISTICS -> where table_schema != 'mysql' and index_name!='PRIMARY' -> group by table_schema,table_name,index_name) c1, -> (select table_schema, table_name,index_name, concat('|', group_concat(column_name order by seq_in_index separator '|'), '|') cols -> from INFORMATION_SCHEMA.STATISTICS -> where table_schema != 'mysql' and index_name != 'PRIMARY' -> group by table_schema, table_name, index_name) c2 -> where c1.table_name = c2.table_name and c1.table_schema = c2.table_schema and c1.cols like concat(c2.cols, '%') and c1.index_name != c2.index_name; +--------------+------------+------------+------------+------------+---------+ | table_schema | table_name | index_name | cols | index_name | cols | +--------------+------------+------------+------------+------------+---------+ | test | test1 | k1 | |f1|id| | k3 | |f1| | | test | test1 | k4 | |f1|f3| | k3 | |f1| | | test | test1 | k5 | |f1|f3|f2| | k3 | |f1| | | test | test1 | k5 | |f1|f3|f2| | k4 | |f1|f3| | +--------------+------------+------------+------------+------------+---------+ 4 rows in set (0.02 sec)
3. 低區分度索引
這樣的索引由於仍然會掃描大量記錄,在實際查詢時通常會被忽略。但是在某些情況下仍然是有用的。因此需要根據實際情況進一步分析。這裡是區分度小於 10% 的索引,可以根據需要調整引數。
mysql> select p.table_schema, p.table_name, c.index_name, c.car, p.car total from -> (select table_schema, table_name, index_name, max(cardinality) car -> from INFORMATION_SCHEMA.STATISTICS -> where index_name != 'PRIMARY' -> group by table_schema, table_name,index_name) c, -> (select table_schema, table_name, max(cardinality) car -> from INFORMATION_SCHEMA.STATISTICS -> where index_name = 'PRIMARY' and table_schema != 'mysql' -> group by table_schema,table_name) p -> where c.table_name = p.table_name and c.table_schema = p.table_schema and p.car > 0 and c.car / p.car < 0.1; +--------------+------------+------------+------+-------+ | table_schema | table_name | index_name | car | total | +--------------+------------+------------+------+-------+ | test | test2 | k1 | 4 | 49 | +--------------+------------+------------+------+-------+ 1 row in set (0.04 sec)
4. 複合主鍵
由於 innodb 是聚簇表,每個二級索引都會包含主鍵值。複合主鍵會造成二級索引龐大,而影響二級索引查詢效能,並影響更新效能。同樣需要根據實際情況進一步分析。
mysql> select table_schema, table_name, group_concat(column_name order by seq_in_index separator ',') cols, max(seq_in_index) len -> from INFORMATION_SCHEMA.STATISTICS -> where index_name = 'PRIMARY' and table_schema != 'mysql' -> group by table_schema, table_name having len>1; +--------------+------------+-----------------------------------+------+ | table_schema | table_name | cols | len | +--------------+------------+-----------------------------------+------+ | test | test2 | id1,id2 | 2 | +--------------+------------+-----------------------------------+------+ 1 rows in set (0.01 sec)
相關文章
- mysql資料庫的索引MySql資料庫索引
- 【資料庫】mysql資料庫索引資料庫MySql索引
- MySQL資料庫之索引MySql資料庫索引
- 【Mysql】資料庫索引,百萬資料測試索引效果MySql資料庫索引
- MySQL資料庫索引簡介MySql資料庫索引
- MySQL(二):快速理解MySQL資料庫索引MySql資料庫索引
- 比較有索引和無索引的查詢速度(在mysql資料庫中)索引MySql資料庫
- [轉]Mysql資料庫相關資料索引MySql資料庫索引
- SAP中的資料庫表索引資料庫索引
- MySQL 資料庫-索引注意事項MySql資料庫索引
- mysql對資料庫表建索引MySql資料庫索引
- 理解Sybase ASE資料庫中的索引資料庫索引
- mysql資料庫索引的建立以及效能測試MySql資料庫索引
- Mysql資料庫是如何通過索引定位資料MySql資料庫索引
- 資料庫查詢和資料庫(MySQL)索引的最佳化建議資料庫MySql索引
- oracle資料庫中索引空間的重用Oracle資料庫索引
- Oracle資料庫中索引的維護 ztOracle資料庫索引
- Oracle資料庫中索引的維護(zt)Oracle資料庫索引
- Oracle資料庫中索引的維護(轉)Oracle資料庫索引
- 資料庫索引中包含的資料結構有哪些資料庫索引資料結構
- MySQL資料庫表索引取樣統計MySql資料庫索引
- 小白也能懂的Mysql資料庫索引詳解MySql資料庫索引
- 索引是一種讓你快速找到資料的資料結構索引資料結構
- 資料庫的部分索引資料庫索引
- 資料庫索引資料庫索引
- Oracle資料庫中索引的維護 (轉帖)Oracle資料庫索引
- MySQL資料庫索引選擇使用B+樹MySql資料庫索引
- 找到Oracle資料庫中效能最差的查詢語句BSOracle資料庫
- B樹在資料庫索引中的應用剖析資料庫索引
- 資料庫——對索引的理解資料庫索引
- 資料庫索引的工作原理資料庫索引
- indexedDB 資料庫 索引Index資料庫索引
- 資料庫索引原理資料庫索引
- 資料庫索引《二》資料庫索引
- 資料庫索引《一》資料庫索引
- [資料庫]索引失效資料庫索引
- 資料庫系列:MySQL索引優化總結(綜合版)資料庫MySql索引優化
- 將MYSQL資料顯示在QT的tablewidget中/將QT中的資料儲存到MYSQL資料庫中MySqlQT資料庫