MySql相同查询的不同执行路径

时间:2014-02-21 18:48:35

标签: mysql sql linux ubuntu centos

我有两个服务器(linode 3072 vps),一个(较旧)有ubuntu 11.04 + Mysql 5.5.32,另一个(较新)有centos 6.2。 + Mysql 5.5.36。 My.cnf文件也一样。但是,当我在同一个数据库(直接导出/导入)上运行相同的查询时,我从2个服务器获得了2个不同的响应时间和执行路径。

较旧的一个响应更快。

1   SIMPLE  ch  ref PRIMARY,channel_name    channel_name    122 const   1   Using where; Using temporary; Using filesort
1   SIMPLE  t   ref PRIMARY,channel_id  channel_id  4   bcc.ch.channel_id   1554    
1   SIMPLE  p   ref PRIMARY PRIMARY 4   bcc.t.entry_id  1   Using index
1   SIMPLE  c   eq_ref  PRIMARY,group_id    PRIMARY 4   bcc.p.cat_id    1   Using where

较新的一个响应较慢。

1   SIMPLE  ch  ref PRIMARY,channel_name    channel_name    122 const   1   Using where; Using temporary; Using filesort
1   SIMPLE  p   index   PRIMARY PRIMARY 8   NULL    25385   Using index; Using join buffer
1   SIMPLE  t   eq_ref  PRIMARY,channel_id  PRIMARY 4   bcc.p.entry_id  1   Using where
1   SIMPLE  c   eq_ref  PRIMARY,group_id    PRIMARY 4   bcc.p.cat_id    1   Using where

最大的区别在于第二步。第一个服务器使用索引,只需扫描1554行,其中第二个服务器使用索引+连接缓冲区,并且必须扫描25385行。有什么想法吗?

这样的查询和其他查询导致某些页面上新服务器上每页加载几秒钟。我正在使用清漆来服务前端,但仍想解决这个问题。

这是正在运行的SQL

select SQL_NO_CACHE cat_name,cat_url_title, count(p.entry_id) as count
from exp_categories as c
join exp_category_posts as p on c.cat_id = p.cat_id
join exp_channel_titles as t on t.entry_id = p.entry_id
join exp_channels as ch on ch.channel_id = t.channel_id
where channel_name IN ('resources')
AND group_id = 2
group by cat_name
order by count desc
limit 5 

1 个答案:

答案 0 :(得分:2)

MySQL中的查询优化器根据索引和表上的统计信息选择要使用的索引。有时索引的选择不是最优的,查询执行也不同。

我们在数据库中发现,在当天的某些时刻,MySQL会更改它用于同一查询的执行路径。

你可以尝试

analyze table exp_categories,exp_category_posts,exp_channel_titles,exp_channels ;

这有时会改善执行计划。或者使用索引提示来确定使用哪些索引。