在MySQL中,可以通过修改参数performance_schema_events_stages_history_long
来设置性能分析的采样率。具体步骤如下:
SHOW VARIABLES LIKE 'performance_schema_events_stages_history_long';
performance_schema_events_stages_history_long
参数的值为0,表示性能分析关闭。要开启性能分析并设置采样率,可以修改参数值为一个大于0的整数,表示采样率的百分比。例如,将性能分析采样率设置为10%:SET GLOBAL performance_schema_events_stages_history_long = 10;
SHOW VARIABLES LIKE 'performance_schema_events_stages_history_long';
performance_schema.events_stages_history_long
视图来查看阶段事件的详细信息。请注意,设置较高的采样率可能会导致性能开销增加,因此应根据实际情况进行调整。