MySQL 8.0 参考手册 / 第 28 章 MySQL 系统模式 / 28.4 sys 模式对象参考 / 28.4.4 sys 模式存储过程 /
28.4.4.11 ps_setup_enable_thread() 过程
给定连接 ID,为线程启用 Performance Schema 检测。生成一个结果集,指示启用了多少线程。已经启用的线程不算数。
in_connection_id BIGINT
:连接ID。这是PROCESSLIST_ID
Performance Schemathreads
表的Id
列 或SHOW PROCESSLIST
输出列中给出的类型的值。
通过连接 ID 启用特定连接:
mysql> CALL sys.ps_setup_enable_thread(225);
+------------------+
| summary |
+------------------+
| Enabled 1 thread |
+------------------+
启用当前连接:
mysql> CALL sys.ps_setup_enable_thread(CONNECTION_ID());
+------------------+
| summary |
+------------------+
| Enabled 1 thread |
+------------------+