通常我们只需要执行show processlist 进行查看,一般执行时间最长的SQL八九不离十就是罪魁祸首,但当show processlist的输出有近千条,那么很难第一眼就发现有问题的SQL,那么如何快速找到呢?其实也非常简单。我们知道mysqld是单进程多线程。那么我们可以使用top获取mysqld进程的各个线程的cpu使用情况。
top -H -p mysqld_pid
测试sql:
select * from cpu_h order by rand() limit 1;
可以看到是线程22682占用cpu比较高,接着通过查看performance_schema.threads表,找到相关SQL
select * from performance_schema.threads where thread_os_id=22682
再通过show processlist看
找到processlist id以后,就可以直接使用命令kill。
python脚本:
(统计活跃线程SQL执行的次数)
#!/usr/bin/python
# -*- coding:utf-8 -*-
import argparse
import MySQLdb
import argparse
import commands
import sys
import MySQLdb.cursors
from warnings import filterwarnings
from warnings import resetwarnings
filterwarnings('ignore', category = MySQLdb.Warning)
reload(sys)
sys.setdefaultencoding('