Innodb插入优化

发布于 2024-11-01 19:26:22 字数 562 浏览 0 评论 0原文

以下查询插入单行需要 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

月光色 2024-11-08 19:26:22

尝试我在这里向这个人展示的一些方法:

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文