MySQL 9.0 发行说明
给定一个连接 ID,禁用线程的 Performance Schema 检测。生成一个结果集,指示禁用了多少个线程。已禁用的线程不计入。
in_connection_id BIGINT
: 连接 ID。这是 Performance Schemathreads
表的PROCESSLIST_ID
列或SHOW PROCESSLIST
输出的Id
列中给出的类型的值。
根据连接 ID 禁用特定连接
mysql> CALL sys.ps_setup_disable_thread(225);
+-------------------+
| summary |
+-------------------+
| Disabled 1 thread |
+-------------------+
禁用当前连接
mysql> CALL sys.ps_setup_disable_thread(CONNECTION_ID());
+-------------------+
| summary |
+-------------------+
| Disabled 1 thread |
+-------------------+