gpt4 book ai didi

对于单行结果集,MySQL 查询停留在 "Sorting Result"

转载 作者:行者123 更新时间:2023-11-30 23:11:04 24 4
gpt4 key购买 nike

我正在构建一个星型模式,作为我正在构建的分析应用程序的后端。我的查询生成器正在使用常规星型连接模式构建查询。下面是一个示例查询,其中一个事实表连接到两个维度表,维度表按最终用户选择的常量值进行过滤。

我使用的是 MySQL 5.5,所有表都是 MyISAM。

在这个问题中,我只是想拉取前 N 行(在本例中为前 1 行)

EXPLAIN
SELECT fact_table.*
FROM
fact_table
INNER JOIN
dim1 ON (fact_table.dim1_key = dim1.pkey)
INNER JOIN
dim2 ON (fact_table.dim2_key = dim2.pkey)
WHERE
dim1.constant_value = 123
AND dim2.constant_value = 456
ORDER BY
measure1 ASC LIMIT 1

解释输出如下。两个维度键都解析为常量值,因为它们的值应用了一个唯一键。

*************************** 1. row ***************************
id: 1
select_type: SIMPLE
table: dim1
type: const
possible_keys: PRIMARY,dim1_uk
key: dim1_uk
key_len: 8
ref: const
rows: 1
Extra: Using filesort
*************************** 2. row ***************************
id: 1
select_type: SIMPLE
table: dim2
type: const
possible_keys: PRIMARY,dim2_uk
key: dim2_uk
key_len: 8
ref: const
rows: 1
Extra:
*************************** 3. row ***************************
id: 1
select_type: SIMPLE
table: fact_table
type: ref
possible_keys: my_idx
key: my_idx
key_len: 16
ref: const,const
rows: 50010
Extra: Using where

这是事实表的索引:

show indexes from fact_table

*************************** 10. row ***************************
Table: fact_table
Non_unique: 1
Key_name: my_idx
Seq_in_index: 1
Column_name: dim1_key
Collation: A
Cardinality: 24
Sub_part: NULL
Packed: NULL
Null:
Index_type: BTREE
Comment:
Index_comment:
*************************** 11. row ***************************
Table: fact_table
Non_unique: 1
Key_name: my_idx
Seq_in_index: 2
Column_name: dim2_key
Collation: A
Cardinality: 70
Sub_part: NULL
Packed: NULL
Null:
Index_type: BTREE
Comment:
Index_comment:
*************************** 12. row ***************************
Table: fact_table
Non_unique: 1
Key_name: my_idx
Seq_in_index: 3
Column_name: measure1
Collation: A
Cardinality: 5643
Sub_part: NULL
Packed: NULL
Null:
Index_type: BTREE
Comment:
Index_comment:

分析此查询时,我发现查询大部分时间都在执行文件排序操作“排序结果”。我的问题是,即使使用了正确的索引,为什么这个查询不能在不进行排序的情况下简单地提取第一个值? my_idx 已在右列排序,索引中首先出现的两列解析为常量,如计划所示。

如果我重写查询,如下所示,我能够得到我想要的计划,没有文件排序。

SELECT fact_table.*
FROM
fact_table
WHERE
dim1_key = (select pkey from dim1 where constant_value = 123)
AND dim2_key = (select pkey from dim2 where constant_value = 456)
ORDER BY
measure1 ASC LIMIT 1

更改生成这些 SQL 命令的工具会很昂贵,因此即使查询是以原始格式编写的,我也想避免这种文件排序。

我的问题是,即使索引上的第一个键是常量(通过 INNER JOIN)并且索引按正确顺序排序,为什么 MySQL 仍选择执行文件排序?有解决办法吗?

最佳答案

My question is, why is MySQL opting to do a filesort even when the first keys on the index are constants (via an INNER JOIN) and the index is sorted in the right order? Is there a way around this?

因为结果集的顺序取决于用于读取 JOIN 中第一个表的索引,但是,正如您在 EXPLAIN 中看到的,JOIN 实际上是从 dim1 表开始的。

这可能看起来很奇怪,但是要隐式地强制 MySQL 从 fact_table 开始,您需要将维度表中的索引更改为 (pkey, constantvalue) 而不是 (constantvalue),否则 MySQL 优化器将从条件 constantvalue=some_value 返回最少行数的表开始。问题是您可能需要这些索引来进行其他查询。

相反,您可以尝试将 STRAIGHT_JOIN 选项添加到 SELECT 并明确强制顺序。

关于对于单行结果集,MySQL 查询停留在 "Sorting Result",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19689812/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com