6
7

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

スロークエリログは、ロック待ちの秒数はカウントしていない。

Posted at

ということなので、
ロック待ちが多くてもスロークエリには上がってこないので、
プログラム側の処理が遅い原因がロックだった場合、
「スロークエリ出てないしなー。」と思っても判断できないから注意。

ロックが発生しているかしていないかは別途監視が必要。

一応、コマンドだと

mysql
SHOW OPEN TABLES;

とか使って

In_useの値を見るとよい。

N-1の数がロック待ち。(で、よいのかな。)

引用:http://dev.mysql.com/doc/refman/5.1/ja/slow-query-log.html

引用:http://dev.mysql.com/doc/refman/5.1-olh/ja/show-open-tables.html

6
7
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
6
7

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?