show processlist命令与kill 线程
show [full] processlist
show processlist显示正在运行的线程。如果有process权限,则可以查看所有正在运行的线程。否则,只能看到自己的线程。如果不使用full关键字,则只在info字段显示每个语句的前100个字符。
show processlist命令是非常有用的,如果你获得到“too many connections”错误信息,并且想知道什么正在运行。MySQL保留了一个额外的连接给超级管理员。
线程能够被kill掉,使用kill语句。
mysql> show processlist;
+----+------+--------------------+-----------+---------+------+-------------+------------------+
| Id | User | Host | db | Command | Time | State | Info |
+----+------+--------------------+-----------+---------+------+-------------+------------------+
| 36 | root | 172.16.100.19:7954 | tpcc_test | Sleep | 456 | | NULL |
| 37 | root | 172.16.100.19:7969 | tpcc_test | Sleep | 456 | | NULL |
| 42 | root | localhost | NULL | Query | 0 | System lock | show processlist |
| 43 | root | 10.0.102.204:49224 | employees | Sleep | 12 | | NULL |
+----+------+--------------------+-----------+---------+------+-------------+------------------+
4 rows in set (0.00 sec)
这个显示的几个字段还是比较好理解的。
- ID:连接标识。这个值和INFORMATION_SCHEMA.PROCESSLIST表的ID列,以及PERFORMANCE_SCHEMA中的threads中的process_id值是相同的。
- user: 发出该语句的MySQL用户。system user是指由服务器生成的用于内部处理任务的非客户端线程。这可以是用于复制的I/O线程,或SQL线程,也可以是延迟的行处理程序。未经身份验证的用户是指已经与客户端连接但尚未对客户端身份进行验证的线程。
- Host:客户端使用的主机。系统用户没有host值。
- db:连接的数据库。
- command:线程执行的命令
A thread can have any of the following Command values: Binlog Dump: This is a thread on a master server for sending binary log contents to a slave server. Change user: The thread is executing a change-user operation. Close stmt: The thread is closing a prepared statement.[关闭准备好的声明] Connect:A replication slave is connected to its master. 【已经连接】 Connect Out:A replication slave is connecting to its master. 【正则连接】 Create DB:The thread is executing a create-database operation. Daemon:This thread is internal to the server, not a thread that services a client connection. 【这个线程是服务器内部线程,而不是客户端线程】 Debug:The thread is generating debugging information. 【线程正在生成调试信息】 Delayed insert:The thread is a delayed-insert handler.【延迟插入处理】 Drop DB:The thread is executing a drop-database operation. Error: Execute:The thread is executing a prepared statement. 【线程正在执行预准备的语句】 Fetch:The thread is fetching the results from executing a prepared statement.【线程正在从预准备语句拉取结果】 Field List:The thread is retrieving information for table columns.【该线程正则检索列表信息】 Init DB:The thread is selecting a default database. 【线程正在选择一个默认数据库】 Kill:The thread is killing another thread. 【线程正则kill掉其他线程】 Long Data:The thread is retrieving long data in the result of executing a prepared statement. Ping:The thread is handling a server-ping request. Prepare:The thread is preparing a prepared statement. Processlist:The thread is producing information about server threads. Query: The thread is executing a statement. Quit:The thread is terminating. Refresh:The thread is flushing table, logs, or caches, or resetting status variable or replication server information. Register Slave: The thread is registering a slave server. Reset stmt: The thread is resetting a prepared statement. Set option: The thread is setting or resetting a client statement-execution option. Shutdown: The thread is shutting down the server. Sleep: The thread is waiting for the client to send a new statement to it. Statistics:The thread is producing server-status information. Table Dump:The thread is sending table contents to a slave server. Time:Unused.
command的取值
- time: 线程已经在当前状态的时间。
- state:一个动作,一个事件,标识线程正在做什么。https://blog.csdn.net/sunqingzhong44/article/details/70570728
- info:
Infocontains the text of the statement being executed by the thread, orNULLif it is not executing one. By default, this value contains only the first 100 characters of the statement. To see the complete statements, useSHOW FULL PROCESSLIST.
进程的信息也可以通过mysqladmin processlist命令查看。
相比较之下show processlist和information_schema.processlist需要互斥锁,而performance_schema.threads不需要,threads对服务器性能影响最小,threads表还显示有关后台线程的信息。
kill线程
与MySQL服务器每个链接都在一个单独的线程中运行。可以使用如下语句杀死一个线程。
kill [connection| query] processlist_id connection: 与kill processlist_id相同;中断连接正在执行的任何语句之后,中断连接。
query: 中断连接正在执行的语句,但是保持本身的连接。
有三种方法可以获得processlist_id,上面已经提到了!
当你使用kill时,一个特殊的kill标记被设置给这个线程。在大多数的情况下,它可能会等一段时间线程再死亡,因为kill标记仅在一些情况下被检测。
- During
SELECToperations, forORDER BYandGROUP BYloops, the flag is checked after reading a block of rows. If the kill flag is set, the statement is aborted. ALTER TABLEoperations that make a table copy check the kill flag periodically for each few copied rows read from the original table. If the kill flag was set, the statement is aborted and the temporary table is deleted.TheKILLstatement returns without waiting for confirmation, but the kill flag check aborts the operation within a reasonably small amount of time. Aborting the operation to perform any necessary cleanup also takes some time.- During
UPDATEorDELETEoperations, the kill flag is checked after each block read and after each updated or deleted row. If the kill flag is set, the statement is aborted. If you are not using transactions, the changes are not rolled back. GET_LOCK()aborts and returnsNULL.- If the thread is in the table lock handler (state:
Locked), the table lock is quickly aborted. - If the thread is waiting for free disk space in a write call, the write is aborted with a “disk full” error message.
mysql> show processlist;
+----+------+---------------------+--------------------+---------+------+-------------+------------------+
| Id | User | Host | db | Command | Time | State | Info |
+----+------+---------------------+--------------------+---------+------+-------------+------------------+
| 36 | root | 172.16.100.19:7954 | tpcc_test | Sleep | 8 | | NULL |
| 37 | root | 172.16.100.19:7969 | tpcc_test | Sleep | 8 | | NULL |
| 42 | root | localhost | NULL | Query | 0 | System lock | show processlist |
| 43 | root | 10.0.102.204:49224 | employees | Sleep | 2564 | | NULL |
| 44 | root | 172.16.100.19:14529 | NULL | Sleep | 2322 | | NULL |
| 45 | root | 172.16.100.19:14770 | information_schema | Sleep | 2315 | | NULL |
| 46 | root | 172.16.100.19:1508 | information_schema | Sleep | 2314 | | NULL |
| 47 | root | 172.16.100.19:10572 | performance_schema | Sleep | 2231 | | NULL |
| 48 | root | 172.16.100.19:11392 | performance_schema | Sleep | 2231 | | NULL |
+----+------+---------------------+--------------------+---------+------+-------------+------------------+
9 rows in set (0.00 sec) mysql> kill 43; #kill掉43线程
Query OK, 0 rows affected (0.00 sec)
mysql> show processlist;
+----+------+---------------------+--------------------+---------+------+-------------+------------------+
| Id | User | Host | db | Command | Time | State | Info |
+----+------+---------------------+--------------------+---------+------+-------------+------------------+
| 36 | root | 172.16.100.19:7954 | tpcc_test | Sleep | 386 | | NULL |
| 37 | root | 172.16.100.19:7969 | tpcc_test | Sleep | 386 | | NULL |
| 42 | root | localhost | NULL | Query | 0 | System lock | show processlist |
| 44 | root | 172.16.100.19:14529 | NULL | Sleep | 3300 | | NULL |
| 45 | root | 172.16.100.19:14770 | information_schema | Sleep | 3293 | | NULL |
| 46 | root | 172.16.100.19:1508 | information_schema | Sleep | 3292 | | NULL |
| 47 | root | 172.16.100.19:10572 | performance_schema | Sleep | 3209 | | NULL |
| 48 | root | 172.16.100.19:11392 | performance_schema | Sleep | 3209 | | NULL |
+----+------+---------------------+--------------------+---------+------+-------------+------------------+
8 rows in set (0.00 sec) MySQL [employees]> select * from employees; #连接发现失败
ERROR 2013 (HY000): Lost connection to MySQL server during query
show processlist命令与kill 线程的更多相关文章
- 显示mysql线程和kill线程的命令
show processlist;//显示哪些线程正在运行. kill id //kill线程 通常在表被锁的时候用. show processlist;显示哪些线程正在运行.您也可以使用my ...
- MySQL show processlist命令详解
show processlist; 命令的输出结果显示了有哪些线程在运行,可以帮助识别出有问题的查询语句,两种方式使用这个命令. 方式1:进入mysql/bin目录下输入mysqladmin proc ...
- mysql show processlist命令 详解
SHOW PROCESSLIST显示哪些线程正在运行.您也可以使用mysqladmin processlist语句得到此信息.如果您有SUPER权限,您可以看到所有线程.否则,您只能看到您自己的线程( ...
- mysql show processlist 命令检查mysql lock
processlist命令的输出结果显示了有哪些线程在运行,可以帮助识别出有问题的查询语句,两种方式使用这个命令. 1. 进入mysql/bin目录下输入mysqladmin processlist; ...
- 通过mysql show processlist 命令检查mysql锁的方法
作者: 字体:[增加 减小] 类型:转载 时间:2010-03-07 show processlist 命令非常实用,有时候mysql经常跑到50%以上或更多,就需要用这个命令看哪个sql语句占用资源 ...
- 命令格式 kill -3 pid
命令格式 kill -3 pid 作用 打印进程号为pid的进程中,每个线程的执行日志 到 nohup文件 中,如果nohup的输出做了重定向,那么输出到重定向以后的文件中. 命令格式 top -Hp ...
- Mysql Show ProcessList命令
每个MySql连接,或者叫线程,在任意一个给定的时间都有一个状态来标识正在进行的事情.可以使用 SHOW [FULL] PROCESSLIST 命令来查看哪些线程正在运行,及其查询状态,Command ...
- TiDB show processlist命令源码分析
背景 因为丰巢自去年年底开始在推送平台上尝试了TiDB,最近又要将承接丰巢所有交易的支付平台切到TiDB上.我本人一直没有抽出时间对TiDB的源码进行学习,最近准备开始一系列的学习和分享.由于我本人没 ...
- Mysql processlist命令
Mysql processlist命令 mysqladmin -uroot -proot processlist mysql 查看当前连接数 命令: show processlist; 如果是ro ...
随机推荐
- [LeetCode] 504. Base 7_Easy tag: Math
Given an integer, return its base 7 string representation. Example 1: Input: 100 Output: "202&q ...
- windows系统上利用putty通过SSH连接亚马逊AWS服务器
1. 找到在购买亚马逊的AWS服务器时保存的密钥文件(假设为abc.pem). 2.打开PuTTYgen,如下图,点击图中1处的“load”,找到abc.pem文件所在的位置,并选择abc.pem,确 ...
- react结合redux开发
先加上我码云的地址:https://gitee.com/ldlx/react_and_rudex
- jdk8新特性-亮瞎眼的lambda表达式
jdk8之前,尤其是在写GUI程序的事件监听的时候,各种的匿名内部类,大把大把拖沓的代码,程序毫无美感可言!既然Java中一切皆为对象,那么,就类似于某些动态语言一样,函数也可以当成是对象啊!代码块也 ...
- 3.GDScript(1)概览
GDScript 是上面提到的用于Godot的主要语言.和其他语言相比,它与Godot高度整合,有许多优点: 简单,优雅,设计上为Lua.Python.Squirrel等语言用户所熟悉. 加载和编译速 ...
- 33网络通信之Epoll模型
多路复用并发模型 -- epoll 监控事件 events EPOLLIN fd可读 EPOLLOUT fd可写 EPOLLPRI ...
- multiprocessing 源码解析 更新中......
一.参考链接 1.源码包下载·链接: https://pypi.org/search/?q=multiprocessing+ 2.源码包 链接:https://pan.baidu.com/s/1j ...
- GitHub 代码上传
方法一 登录GitHub后,点击下面的图 New responsitory 按钮 或者点击绿色按钮 New repository,新建一个新建一个远程仓库(remote repository),点击后 ...
- 【Redis学习之六】Redis数据类型:集合和有序集合
环境 虚拟机:VMware 10 Linux版本:CentOS-6.5-x86_64 客户端:Xshell4 FTP:Xftp4 jdk8 redis-2.8.18 一.集合 Set无序的.去重的元素 ...
- spring4.0.0 源码导入eclipse(sts)
其余步骤请见:http://www.cnblogs.com/xiluhua/p/7450972.html 执行 gradle eclipse -x :eclipse 报错: 解决办法: 找到 行,注释 ...