【发布时间】:2016-11-24 18:50:44
【问题描述】:
我们正在升级到 mysql 5.7,但发现它比它的 5.6 对应部分慢得多。虽然两者具有几乎相同的配置,但 5.6 版本在毫秒内执行大部分 sql,而另一个需要大约 1 秒或更长时间用于中等复杂 sql,例如下面的。
-- Getting most recent users that are email-verified and not banned
SELECT
`u`.*
FROM
`user` AS `u`
INNER JOIN `user` user_table_alias ON user_table_alias.`id` = `u`.`id`
LEFT JOIN `user_suspend` user_suspend_table_alias ON user_suspend_table_alias.`userId` = `user_table_alias`.`id`
WHERE
(
`user_suspend_table_alias`.`id` IS NULL
)
AND
`user_table_alias`.`emailVerify` = 1
ORDER BY
`u`.`joinStamp` DESC
LIMIT 1, 18
两个表都非常简单且索引良好:
-- ----------------------------
-- Table structure for user
-- ----------------------------
DROP TABLE IF EXISTS `user`;
CREATE TABLE `user` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`email` varchar(128) NOT NULL DEFAULT '',
`username` varchar(32) NOT NULL DEFAULT '',
`password` varchar(64) NOT NULL DEFAULT '',
`joinStamp` int(11) NOT NULL DEFAULT '0',
`activityStamp` int(11) NOT NULL DEFAULT '0',
`accountType` varchar(32) NOT NULL DEFAULT '',
`emailVerify` tinyint(2) NOT NULL DEFAULT '0',
`joinIp` int(11) unsigned NOT NULL,
`locationId` int(11) DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `email` (`email`),
UNIQUE KEY `username` (`username`),
KEY `accountType` (`accountType`),
KEY `joinStamp` (`joinStamp`),
KEY `activityStamp` (`activityStamp`)
) ENGINE=MyISAM AUTO_INCREMENT=89747 DEFAULT CHARSET=utf8 COMMENT='utf8_general_ci';
-- ----------------------------
-- Table structure for user_suspend
-- ----------------------------
DROP TABLE IF EXISTS `user_suspend`;
CREATE TABLE `user_suspend` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`userId` int(11) DEFAULT NULL,
`timestamp` int(11) DEFAULT NULL,
`message` text NOT NULL,
`expire` int(11) DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `userId` (`userId`)
) ENGINE=MyISAM AUTO_INCREMENT=513 DEFAULT CHARSET=utf8;
这些表分别有大约 100K 和 1K 行。我注意到我想“修复”两个有趣的行为:
- 删除 ORDER BY 将执行时间从 ~1.2 秒缩短到 0.0015 秒!!
- mysql 5.7没有缓存sql
注意:我们确实有缓存查询:
显示类似“Qcache%”的状态
Qcache_free_blocks 19408
Qcache_free_memory 61782816
Qcache_hits 31437169
Qcache_inserts 2406719
Qcache_lowmem_prunes 133483
Qcache_not_cached 43555
Qcache_queries_in_cache 41691
Qcache_total_blocks 103951
我在谷歌上搜索并发现了许多在 5.7 上报告的问题,但不明白为什么这个 sql 出现了这种奇怪的行为(还有很多其他 sql 在 5.7 上运行得慢得多)。
这是 Neville K 建议的解释:
id select_type table partitions type possible_keys key key_len ref rows filtered Extra
1 SIMPLE user_table_alias NULL ALL PRIMARY NULL NULL NULL 104801 10.00 Using where; Usingtemporary; Usingfilesort
1 SIMPLE u NULL eq_ref PRIMARY PRIMARY 4 knn.base_user_table_alias.id 1 100.00 NULL
1 SIMPLE user_suspend_table_alias NULL ref userId userId 5 knn.base_user_table_alias.id 1 10.00 Using where;
【问题讨论】:
-
所以.. 如果你想要速度,为什么要使用 MyISAM?
-
你能发表解释吗?
-
使用“profile”分析SQL中的时间成本;可以显示每个阶段的时间成本;
-
@Mjh:我认为 MyISAM 是为了速度?用于事务的 InnoDB ?没有?
-
您拥有的数据量很少,因此如果您使用 innodb 并将魔术变量
innodb_buffer_pool_size增加到 2GB,您会发现查询速度非常快。
标签: php mysql sql-server query-cache