From time to time load on my server (centos 4)jumps to 15 or more. I need to discover what process causes this high load on server. It there any script which can handle this for me ? I think its caused by mysql so even to discover the sql query would be great help.
|
feedback
|
|
High server load typically caused by disk I/O. There are some ways to identify which process is waiting for disk I/O:
You should especially pay attention to the processes in
| |||
|
feedback
|
|
SHOW FULL PROCESSLIST\G look for something with a long runtime. then EXPLAIN to see if it's making full table scans, generating temp tables, etc. Otherwise, you can use something like the free version of Jet ( http://www.jetprofiler.com/ ) Garrett | |||
feedback
|