原文地址:https://www.cnblogs.com/shihuc/p/8733460.html

今天的主角是:

SHOW [FULL] PROCESSLIST

show full processlist;

官方文档的描述如下:

SHOW PROCESSLIST shows you which threads are running. You can also get this information from the
INFORMATION_SCHEMA PROCESSLIST table or the mysqladmin processlist command. If you have
the PROCESS privilege, you can see all threads. Otherwise, you can see only your own threads (that is,
threads associated with the MySQL account that you are using). If you do not use the FULL keyword, only
the first 100 characters of each statement are shown in the Info field.

意思就是说上述指令是用来查看那些线程正在运行。

你也可以得到这些信息,从INFORMATION_SCHEMA PROCESSLIST这个表,或者通过mysqladmin processlist指令。

如果你有PROCESS权限,你可以查看所有的线程。否则,你只能查看你自己当前账户的线程。

如果你没有使用FULL关键字,你只能查看每个记录中Info字段里面的前100个字符。【加上FULL,即可在info列中显示完整的sql语句】

方式1:具体操作:

mysql> show processlist;
ERROR 2006 (HY000): MySQL server has gone away
No connection. Trying to reconnect...
Connection id: 46661
Current database: advsql +-------+-----------+-------------------+--------+---------+-------+-------+------------------+
| Id | User | Host | db | Command | Time | State | Info |
+-------+-----------+-------------------+--------+---------+-------+-------+------------------+
| 46586 | tkcssuser | 10.90.13.61:55838 | tkcss | Sleep | 42 | | NULL |
| 46660 | tkcssuser | 10.90.13.8:52008 | tkcss | Sleep | 11041 | | NULL |
| 46661 | root | localhost | advsql | Query | 0 | init | show processlist |
+-------+-----------+-------------------+--------+---------+-------+-------+------------------+
3 rows in set (0.01 sec)

方式2:通过查询information_schema的processlist表:

mysql> select * from information_schema.processlist;
+-------+-----------+-------------------+--------+---------+-------+-----------+----------------------------------------------+
| ID | USER | HOST | DB | COMMAND | TIME | STATE | INFO |
+-------+-----------+-------------------+--------+---------+-------+-----------+----------------------------------------------+
| 46661 | root | localhost | advsql | Query | 0 | executing | select * from information_schema.processlist |
| 46586 | tkcssuser | 10.90.13.61:55838 | tkcss | Sleep | 279 | | NULL |
| 46660 | tkcssuser | 10.90.13.8:52008 | tkcss | Sleep | 11578 | | NULL |
+-------+-----------+-------------------+--------+---------+-------+-----------+----------------------------------------------+
3 rows in set (0.00 sec)

方式3:mysqladmin processlist指令:

[root@localhost ~]# mysqladmin processlist -u root -p
Enter password:
+-------+-----------+-------------------+--------+---------+-------+-------+------------------+
| Id | User | Host | db | Command | Time | State | Info |
+-------+-----------+-------------------+--------+---------+-------+-------+------------------+
| 46586 | tkcssuser | 10.90.13.61:55838 | tkcss | Sleep | 138 | | |
| 46660 | tkcssuser | 10.90.13.8:52008 | tkcss | Sleep | 12037 | | |
| 46661 | root | localhost | advsql | Sleep | 459 | | |
| 46662 | root | localhost | | Query | 0 | init | show processlist |
+-------+-----------+-------------------+--------+---------+-------+-------+------------------+

关于这个命令的价值,官方的介绍如下:

The SHOW PROCESSLIST statement is very useful if you get the “too many connections” error message
and want to find out what is going on. MySQL reserves one extra connection to be used by accounts that
have the SUPER privilege, to ensure that administrators should always be able to connect and check the
system (assuming that you are not giving this privilege to all your users). Threads can be killed with the KILL statement.

运行的线程,可以通过KILL指令将其杀掉。这个信息非常重要。

这里,可以看到SHOW PROCESSLIST指令里面的输出内容,有几个字段,下面给予解释说明,只有搞清楚了这些字段的含义,才对我们的实际项目问题分析才有价值:

  • Id:

    The connection identifier. This is the same type of value displayed in the ID column of the
    INFORMATION_SCHEMA.PROCESSLIST table, the PROCESSLIST_ID column of the Performance
    Schema threads table, and returned by the CONNECTION_ID() function.

  • User:

    The MySQL user who issued the statement. If this is system user, it refers to a nonclient thread
    spawned by the server to handle tasks internally. This could be the I/O or SQL thread used on replication
    slaves or a delayed-row handler. unauthenticated user refers to a thread that has become
    associated with a client connection but for which authentication of the client user has not yet been done.
    event_scheduler refers to the thread that monitors scheduled events. For system user, there is no
    host specified in the Host column.

  • Host:

    The host name of the client issuing the statement (except for system user where there is no host).
    SHOW PROCESSLIST reports the host name for TCP/IP connections in host_name:client_port
    format to make it easier to determine which client is doing what.

  • db:

     The default database, if one is selected, otherwise NULL.

  • Command:

     The type of command the thread is executing. 例如上面的例子中,Sleep,或者Query

  • Time:

    The time in seconds that the thread has been in its current state. For a slave SQL thread, the value is
    the number of seconds between the timestamp of the last replicated event and the real time of the slave
    machine.线程处于当前状态的时间,以秒为单位

  • State:

    Most states correspond to very quick operations. If a thread stays in a given state for many seconds,
    there might be a problem that needs to be investigated.

     An action, event, or state that indicates what the thread is doing.

  • Info:

    The statement the thread is executing, or NULL if it is not executing any statement. The statement might
    be the one sent to the server, or an innermost statement if the statement executes other statements. For
    example, if a CALL statement executes a stored procedure that is executing a SELECT statement, the
    Info value shows the SELECT statement.线程正在执行的语句,如果没有执行任何语句,则为NULL。

上述信息的解释当中,对于我们分析问题,尤为重要的是Id,Host,Time,State以及Info字段。这几个当中,第一眼能让我们看出问题的是Time,State和Info字段。我们若想看得更详细的Info字段,请用SHOW FULL PROCESSLIST指令。注意前面的命令解释内容。

我们线上的一个问题,就是加索引加不上去,我们将应用停掉还是加不上去,通过SHOW PROCESSLIST指令,发现有好多线程Command处于Query状态。最长的Time字段显示达到230172seconds,换算成小时,都63个小时,见鬼啊!!!!(这个地方有疑问

为了解决问题,立即调用KILL指令,前面介绍时提到的。

KILL [CONNECTION | QUERY] processlist_id

官方介绍:

Each connection to mysqld runs in a separate thread. You can kill a thread with the KILL
processlist_id statement.

参数中的processlist_id,来源于show processlist结果列表中的id字段。

kill指令支持两个可选参数,CONNECTION以及QUERY。

• KILL CONNECTION is the same as KILL with no modifier: It terminates the connection associated with
the given processlist_id, after terminating any statement the connection is executing.
• KILL QUERY terminates the statement the connection is currently executing, but leaves the connection
itself intact.

很简单,connection选项,kill的时候,将连接也断掉,而query选项,kill的过程只是将该指令杀掉,连接还保持。 kill指令不指定connection或者query选项时,默认是connection。

到此,今天要介绍的MySQL的查看数据运行连接状态的内容到此结束。

===========================================================================

原文地址:https://www.cnblogs.com/shihuc/p/8733460.html

MySQL分析数据运行状态利器【show full processlist】的更多相关文章

  1. MySQL分析数据运行状态利器【SHOW PROCESSLIST】

    这个博文,将只是简单的记录一下,我们的数据库操作和使用中,加索引加不上去,分析的过程,其实比较简单,就是看有没有连接进程还在操作表.有的话,将其停掉(不影响业务的场景下). 今天的主角是: SHOW ...

  2. MySQL分析数据运行状态【SHOW PROCESSLIST】

    这个博文,将只是简单的记录一下,我们的数据库操作和使用中,加索引加不上去,分析的过程,其实比较简单,就是看有没有连接进程还在操作表.有的话,将其停掉(不影响业务的场景下). 今天的主角是: SHOW ...

  3. 使用Sqoop从MySQL导入数据到Hive和HBase 及近期感悟

    使用Sqoop从MySQL导入数据到Hive和HBase 及近期感悟 Sqoop 大数据 Hive HBase ETL 使用Sqoop从MySQL导入数据到Hive和HBase 及近期感悟 基础环境 ...

  4. pt-query-digest怎么分析慢查询日志分析数据

    在进行使用linux系统作为服务器的情况,那几需要进行对linux的服务器进行性能上数据进行抓取之后,就需要对数据中内容进行分析,看数据库中内容是否存在瓶颈上的问题,在进行获取到的数据的慢查日志,将使 ...

  5. 264分析两大利器:264VISA和Elecard StreamEye Tools

    学了264有将近3个月有余,好多时候都在学习老毕的书和反复看JM86的代码,最近才找到264分析两大利器:264VISA和Elecard StreamEye Tools.不由得感叹,恨不逢同时. 简单 ...

  6. mysql插入数据时,中文乱码

    MySQL 插入数据时,中文乱码问题的解决(转) 当向 MySQL 数据库插入一条带有中文的数据形如 insert into employee values(null,'张三','female','1 ...

  7. Mysql删除数据后磁盘空间未释放的解决办法【转】

    转自 Mysql删除数据后,磁盘空间未释放的解决办法 - 今日头条(TouTiao.com)http://toutiao.com/a6303087712678412546/?tt_from=mobil ...

  8. 警惕!MySQL成数据勒索新目标

    据最新报道显示,继MongoDB和Elasticsearch之后,MySQL成为下个数据勒索目标,从2月12日凌晨开始,已有成百上千个开放在公网的MySQL数据库被劫持,删除了数据库中的存储数据,攻击 ...

  9. 利用TPC-H为MYSQL生成数据

    ## 利用TPC-H为MYSQL生成数据 导言 这篇文章是看了joyee写的TPC-H数据导入MySQL教程以及另一篇网上的MySQL TPCH测试工具简要手册 后写的,有些内容是完全转载自以上两篇文 ...

随机推荐

  1. java高并发系列 - 第8天:线程组

    线程组 我们可以把线程归属到某个线程组中,线程组可以包含多个线程以及线程组,线程和线程组组成了父子关系,是个树形结构,如下图: 使用线程组可以方便管理线程,线程组提供了一些方法方便方便我们管理线程. ...

  2. ASP.NET(1)

    1.IIS安装问题,先装VS再装IIS,处理程序映射有问题,使用VS自带的控制台输入命令,注册路径 2.开发模式,一般处理程序,使用IO操作读取html文件,使前后端分离 3.post请求和get请求 ...

  3. Java的23种设计模式,详细讲解(三)

    本人免费整理了Java高级资料,涵盖了Java.Redis.MongoDB.MySQL.Zookeeper.Spring Cloud.Dubbo高并发分布式等教程,一共30G,需要自己领取.传送门:h ...

  4. Linux下载——下载文件的命令

    Linux下载——获取网络文件的命令 摘抄:本文主要学习了在Linux系统中如何下载文件的命令. wget命令 wget命令是一个用来下载文件的命令,可以在后台运行,在用户退出之后仍能继续下载,支持代 ...

  5. centos 配置sentry+钉钉+邮件通知

    1.sentry官方推荐docker方式安装.使用docker-compose,最好是centos7 2.卸载旧版本 yum remove docker docker-common docker-se ...

  6. C++ 自增、自减运算符的重载和性能分析

    01 ++.--运算符重载函数的格式 自增运算符和自减运算符是有前置和后置之分的,如: a++ // 后置自增运算符 ++a // 前置自增运算符 b-- // 后置自减运算符 --b // 前置自减 ...

  7. Junit单元测试数据生成工具类

    在Junit单元测试中,经常需要对一些领域模型的属性赋值,以便传递给业务类测试,常见的场景如下: com.enation.javashop.Goods goods = new com.enation. ...

  8. 设置view的layer属性方法

    1.需要导入QuartzCore.framewoork框架到工程2.在文件中导入#import 3.设置 必须导入的空间 #import<QuartzCore/QuartzCore.h> ...

  9. Android Studio当中的创建新方法的快捷键该如何使用?

    当有红线出现的时候,我们的代码并没有编译出错,则需要输入alt+enter则可以得到相应的神奇效果了.这个方法我竟然今天才知道,也真是丢脸了.比如说我们书写了一个新的没有创建的方法,我们直接输入alt ...

  10. jQuery Migrate 插件用法

    jQuery Migrate是应用迁移辅助插件,是用于高级版本兼容低级版本辅助插件.例如jQuery版本用的是1.x,计划升级到3.x,就可以在页面删除1.x版本,换成3.x版本,如果有脚本错误,就引 ...