Innodb插入优化
以下查询插入单行需要 1-10 秒
INSERT INTO site_stats (stats_id, page_id, stats_time) VALUES(N, N, NOW());
stats_id 和 page_id 是 INT
MySQL 慢日志
Count : 80049 (26%)
Time : 184467445311844 s total, 2304431602 s avg, 1 s to 18446744073709 s max
95% of Time : 337702 s total, 4 s avg, 1 s to 78 s max
Lock Time : 4145198 s total, 51 s avg, 0 s to 8377 s max
Rows sent : 0 avg, 0 to 0 max
Rows examined : 0 avg, 0 to 0 max
忘记提及:我每小时将记录从该表移动到另一个表,以便向用户提供统计信息。通常一小时插入7000多行
The following query takes 1-10 secs in inserting a single row
INSERT INTO site_stats (stats_id, page_id, stats_time) VALUES(N, N, NOW());
stats_id and page_id are INT
MySQL slow log
Count : 80049 (26%)
Time : 184467445311844 s total, 2304431602 s avg, 1 s to 18446744073709 s max
95% of Time : 337702 s total, 4 s avg, 1 s to 78 s max
Lock Time : 4145198 s total, 51 s avg, 0 s to 8377 s max
Rows sent : 0 avg, 0 to 0 max
Rows examined : 0 avg, 0 to 0 max
Forgot to mention: I move records from this table to another every hour for providing stats to users. Usually more than 7000 rows are inserted in one hour
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试我在这里向这个人展示的一些方法:
CodeIgniter - ses_destroy() 使用大量 CPU
另外,删除一些不太重要的索引。拥有多个索引会减慢写入语句的速度。
Try some of the methods I showed this guy here:
CodeIgniter - ses_destroy() uses a LOT of CPU
Also, remove some of your less important indexes. Having multiple indexes can slow down your write statements.