为了账号安全,请及时绑定邮箱和手机立即绑定

mysql explain的bug

标签:
MySQL


最近在做hadoop集群的容量数据,主要依据zabbix的监控数据,因为要计算impala的内存使用情况,就使用了下面的sql

select a.host,avg(b.value) from

(select a.host,b.itemid,b.key_ from hosts a,items b where

a.hostid=b.hostid and a.host like '%hadoop-datanode%' and b.key_='impala.get[mem]')a

join

(select itemid,clock,value from history) b on a.itemid=b.itemid

and b.clock between unix_timestamp('2014-02-28 00:00:00') and

unix_timestamp('2014-03-06 00:00:00') group by a.host;

在使用explain时发现巨慢,一个生成执行计划的操作都这么慢?

考虑到sql的性能优化,就把上面的查询写成了3个表的join:

select

a.host,avg(c.value) from hosts a,items b,history c where

a.hostid=b.hostid and a.host like '%hadoop-datanode%' and

b.key_='impala.get[mem]'

and

b.itemid=c.itemid and c.clock between

unix_timestamp('2014-02-28 00:00:00') and unix_timestamp('2014-03-06 00:00:00') group by a.host;

这样性能就好多了。。

其实这是explain的一个bug,在使用subquery时,explain会在后台执行这个sql,这样explain的时间就差不多是sql运行的时间了。。。

看来自己的sql写得太烂了,以后还是要多多的explain啊。。。

©著作权归作者所有:来自51CTO博客作者菜菜光的原创作品,如需转载,请注明出处,否则将追究法律责任

mysqlbugexplainbigdata


点击查看更多内容
TA 点赞

若觉得本文不错,就分享一下吧!

评论

作者其他优质文章

正在加载中
  • 推荐
  • 评论
  • 收藏
  • 共同学习,写下你的评论
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦
今天注册有机会得

100积分直接送

付费专栏免费学

大额优惠券免费领

立即参与 放弃机会
意见反馈 帮助中心 APP下载
官方微信

举报

0/150
提交
取消