Documentation Home
MySQL 8.3 Reference Manual
Related Documentation Download this Manual
PDF (US Ltr) - 40.8Mb
PDF (A4) - 40.9Mb
Man Pages (TGZ) - 294.0Kb
Man Pages (Zip) - 409.0Kb
Info (Gzip) - 4.0Mb
Info (Zip) - 4.0Mb
Excerpts from this Manual

MySQL 8.3 Reference Manual  /  ...  /  The ps_setup_disable_thread() Procedure

30.4.4.7 ps_setup_disable_thread() 过程

给定连接 ID,禁用性能模式的线程instrumentation。产生结果集,指示禁用了多少线程。已经禁用的线程不计入。

参数
  • in_connection_id BIGINT:连接 ID。这是性能模式 threads 表的 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 |
+-------------------+