MySQL Variables profiling_history_size 数据库 参数变量解释及正确配置使用

本站中文解释

profiling_history_size定义系统参数,用于管理运行状况统计信息的收集历史大小。它规定了MySQL可以记录的存储的最近的统计信息量。

该参数默认值为15,即使用值15分钟内的查询统计数据进行分析。您可以根据您的系统需求更改该参数值。例如,您可以将值更改为30分钟,以查看30分钟内的查询统计数据。

要设置 profiling_history_size,请在命令行客户端中输入:

SET GLOBAL profiling_history_size = 30;

官方英文解释

profiling_history_size

The number of statements for which to maintain profiling
information if profiling is
enabled. The default value is 15. The maximum value is 100.
Setting the value to 0 effectively disables profiling. See
Section 13.7.5.31, “SHOW PROFILES Statement”.

This variable is deprecated; expect it to be removed in a
future release of MySQL.


数据运维技术 » MySQL Variables profiling_history_size 数据库 参数变量解释及正确配置使用