我有一个很大的数据库,尽管该列上有适当的索引(实际上是fk),但是特别是一个表一直很慢。公平地说,该列具有较低的基数(仅5个可能的值,并且分布不均),但是执行LIMIT 1
仍需要9+秒,但是在选择特定的列时仅 btree的路径。
这是桌子:
CREATE TABLE `locking_scripts` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`script_type_id` int(10) unsigned NOT NULL DEFAULT 1,
`transaction_output_id` int(10) unsigned NOT NULL,
`script` blob NOT NULL,
`address_id` int(10) unsigned DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `locking_scripts_uq` (`transaction_output_id`),
KEY `locking_scripts_address_id_fk` (`address_id`),
KEY `locking_scripts_type_id_fk` (`script_type_id`),
CONSTRAINT `locking_scripts_address_id_fk` FOREIGN KEY (`address_id`) REFERENCES `addresses` (`id`),
CONSTRAINT `locking_scripts_output_id_fk` FOREIGN KEY (`transaction_output_id`) REFERENCES `transaction_outputs` (`id`),
CONSTRAINT `locking_scripts_type_id_fk` FOREIGN KEY (`script_type_id`) REFERENCES `script_types` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=748705501 DEFAULT CHARSET=utf8mb4;
有问题的列是script_type_id
。该对应表的内容为:
+----+------------------------+
| id | type |
+----+------------------------+
| 2 | CUSTOM_SCRIPT |
| 3 | PAY_TO_PUBLIC_KEY |
| 4 | PAY_TO_PUBLIC_KEY_HASH |
| 5 | PAY_TO_SCRIPT_HASH |
| 1 | UNKNOWN |
+----+------------------------+
两个表的table status
为:
+-------------------+--------+---------+------------+-----------+----------------+--------------+-----------------+--------------+-----------+----------------+---------------------+---------------------+------------+--------------------+----------+----------------+---------+
| Name | Engine | Version | Row_format | Rows | Avg_row_length | Data_length | Max_data_length | Index_length | Data_free | Auto_increment | Create_time | Update_time | Check_time | Collation | Checksum | Create_options | Comment |
+-------------------+--------+---------+------------+-----------+----------------+--------------+-----------------+--------------+-----------+----------------+---------------------+---------------------+------------+--------------------+----------+----------------+---------+
| locking_scripts | InnoDB | 10 | Dynamic | 726718877 | 70 | 51335135232 | 0 | 34351300608 | 7340032 | 748705501 | 2018-10-25 01:31:20 | 2018-11-18 15:30:40 | NULL | utf8mb4_general_ci | NULL | | |
| script_types | InnoDB | 10 | Dynamic | 5 | 3276 | 16384 | 0 | 16384 | 0 | 6 | 2018-10-24 22:22:43 | NULL | NULL | utf8mb4_general_ci | NULL | | |
+-------------------+--------+---------+------------+-----------+----------------+--------------+-----------------+--------------+-----------+----------------+---------------------+---------------------+------------+--------------------+----------+----------------+---------+
我正在运行的查询是:
SELECT id FROM locking_scripts WHERE script_type_id = 1 LIMIT 1;
...大约需要9.5s
才能执行。该查询的配置文件是:
+------+-------------+-----------------+------+----------------------------+----------------------------+---------+-------+-----------+----------+-------------+
| id | select_type | table | type | possible_keys | key | key_len | ref | rows | filtered | Extra |
+------+-------------+-----------------+------+----------------------------+----------------------------+---------+-------+-----------+----------+-------------+
| 1 | SIMPLE | locking_scripts | ref | locking_scripts_type_id_fk | locking_scripts_type_id_fk | 4 | const | 363359438 | 100.00 | Using index |
+------+-------------+-----------------+------+----------------------------+----------------------------+---------+-------+-----------+----------+-------------+
探查器说它正在使用索引(为公平起见,它必须过滤363,359,438行,但是使用LIMIT 1
时它应该很快,因为它在第一次匹配时就失败了)。但是,有趣的是,此查询的速度是原来的两倍:
SELECT id FROM locking_scripts WHERE script_type_id NOT IN (2, 3, 4, 5) LIMIT 1
...哪个需要4.5s
来执行。 (尽管这仍然是很长的时间。)我还有其他大小相似的表,并且从索引相似的集合中选择LIMIT 1
几乎是即时的。
为完整起见,“更快”版本的说明如下:
+------+-------------+-----------------+-------+----------------------------+----------------------------+---------+------+-----------+----------+--------------------------+
| id | select_type | table | type | possible_keys | key | key_len | ref | rows | filtered | Extra |
+------+-------------+-----------------+-------+----------------------------+----------------------------+---------+------+-----------+----------+--------------------------+
| 1 | SIMPLE | locking_scripts | range | locking_scripts_type_id_fk | locking_scripts_type_id_fk | 4 | NULL | 363359442 | 100.00 | Using where; Using index |
+------+-------------+-----------------+-------+----------------------------+----------------------------+---------+------+-----------+----------+--------------------------+
我没有足够的想法来解释为什么我看到这种结果。如果有人有任何见解,我将不胜感激。谢谢。
其他信息,按评论:
SELECT *
的执行计划:
EXPLAIN FORMAT=JSON SELECT * FROM locking_scripts WHERE script_type_id = 1 LIMIT 1;
{
"query_block": {
"select_id": 1,
"table": {
"table_name": "locking_scripts",
"access_type": "ref",
"possible_keys": ["locking_scripts_type_id_fk"],
"key": "locking_scripts_type_id_fk",
"key_length": "4",
"used_key_parts": ["script_type_id"],
"ref": ["const"],
"rows": 363359438,
"filtered": 100
}
}
}
SELECT * ... NOT IN ()
的执行计划:
EXPLAIN FORMAT=JSON SELECT * FROM locking_scripts WHERE script_type_id NOT IN (2, 3, 4, 5) LIMIT 1;
{
"query_block": {
"select_id": 1,
"table": {
"table_name": "locking_scripts",
"access_type": "range",
"possible_keys": ["locking_scripts_type_id_fk"],
"key": "locking_scripts_type_id_fk",
"key_length": "4",
"used_key_parts": ["script_type_id"],
"rows": 363359442,
"filtered": 100,
"index_condition": "locking_scripts.script_type_id not in (2,3,4,5)"
}
}
}
答案 0 :(得分:0)
(太大,无法发表评论。)
到目前为止,我很困惑。 JSON不同,但是它们告诉我的还不够。这是另一件事可以尝试:
FLUSH STATUS;
SELECT ...;
SHOW SESSION STATUS LIKE 'Handler%';
这是获取某些动作的实际计数的通用技术。它可能有助于确定“ 1”行是在扫描的早期还是之后出现的。