如何解释 MySQL 配置文件输出以调整外部 MySQL 服务器

发布于 2024-11-06 18:05:01 字数 1537 浏览 0 评论 0原文

我最近将 Drupal 站点升级到多 webhead 环境,并尝试使用 InnoDB 引擎调整 MySQL。我注意到 SELECT 查询在生产中比在暂存中更快,但 UPDATE 查询在生产中更慢。

  • 暂存:在具有 LAMP 堆栈的虚拟机上。
  • 生产:带负载平衡器的双网络头。专用 MySQL 服务器和第二个热备用数据库服务器。

我的系统管理员告诉我,延迟是由于 1) 远程数据库连接和 2) 两个数据库服务器之间数据复制的二进制日志记录造成的。

我是 InnoDB 和多服务器环境的新手。我想看看 MySQL 配置文件的输出是否证实了我的服务器设置,或者是否还有进一步优化生产 MySQL 服务器的空间。

这是我从临时数据库和生产数据库中运行的。我修改了输出,将数字列并排进行比较。请注意,在生产环境中,除了状态为“end”的行之外,该查询在表中的每一行上运行得更快。是执行二进制日志记录的“结束”阶段吗?

mysql> SET profiling = 1;
mysql> UPDATE node SET created = created + 1 WHERE nid = 100;
mysql> SHOW profile;
+----------------------+----------+------------+
| Status               | Staging  | Production |
+----------------------+----------+------------+
| starting             | 0.000100 | 0.000037   |
| checking permissions | 0.000014 | 0.000006   |
| Opening tables       | 0.000042 | 0.000017   |
| System lock          | 0.000007 | 0.000004   |
| Table lock           | 0.000009 | 0.000003   |
| init                 | 0.000076 | 0.000030   |
| Updating             | 0.000062 | 0.000022   |
| end                  | 0.000031 | 0.002159   |
| query end            | 0.000006 | 0.000003   |
| freeing items        | 0.000010 | 0.000003   |
| closing tables       | 0.000009 | 0.000002   |
| logging slow query   | 0.000005 | 0.000001   |
| cleaning up          | 0.000004 | 0.000001   |
+----------------------+----------+------------+
| Total                | 0.000385 | 0.002288   |
+----------------------+----------+------------+

I have recently upgraded a Drupal site to multi-webhead environment and am trying to tune MySQL with InnoDB engine. I notice SELECT queries are faster on production than on staging, but UPDATE queries are slower on production.

  • Staging: On a virtual machine with LAMP stack on it.
  • Production: Double webheads with load balancer. Dedicated MySQL server and a second hot stand-by DB server.

My system admin tells me that the latency is due to 1) remote DB connection and 2) binary logging for data replication between two DB servers.

I am new to InnoDB and multi-server environment. I'd like to see if the output from MySQL profile confirms my server settings, or if there is any more room for further optimization of production MySQL server.

This is what I ran from staging and production databases. I modified the output with number columns side by side for comparison. Note that the query runs faster on production on every rows in the table except one with status "end". Is "end" phase where binary logging is performed?

mysql> SET profiling = 1;
mysql> UPDATE node SET created = created + 1 WHERE nid = 100;
mysql> SHOW profile;
+----------------------+----------+------------+
| Status               | Staging  | Production |
+----------------------+----------+------------+
| starting             | 0.000100 | 0.000037   |
| checking permissions | 0.000014 | 0.000006   |
| Opening tables       | 0.000042 | 0.000017   |
| System lock          | 0.000007 | 0.000004   |
| Table lock           | 0.000009 | 0.000003   |
| init                 | 0.000076 | 0.000030   |
| Updating             | 0.000062 | 0.000022   |
| end                  | 0.000031 | 0.002159   |
| query end            | 0.000006 | 0.000003   |
| freeing items        | 0.000010 | 0.000003   |
| closing tables       | 0.000009 | 0.000002   |
| logging slow query   | 0.000005 | 0.000001   |
| cleaning up          | 0.000004 | 0.000001   |
+----------------------+----------+------------+
| Total                | 0.000385 | 0.002288   |
+----------------------+----------+------------+

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

下雨或天晴 2024-11-13 18:05:01

你靠的是钱。 “结束”状态将包括二进制日志记录。

对于最终状态,如下
操作可能正在发生:

  • 表中数据更改后删除查询缓存条目
  • 将事件写入二进制日志
  • 释放内存缓冲区,包括 blob

http://dev.mysql.com/doc/refman/5.5/en/general-thread-states.html

You're on the money. The "end" state will include binary logging.

For the end state, the following
operations could be happening:

  • Removing query cache entries after data in a table is changed
  • Writing an event to the binary log
  • Freeing memory buffers, including for blobs

http://dev.mysql.com/doc/refman/5.5/en/general-thread-states.html

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