如何在不重启MySQL的情况下刷新performance_schema统计信息?

我知道性能模式中的统计信息在
MySQL重启时并不持久.

我想在不重启MySQL的情况下刷新所有统计数据.有什么办法吗?

谢谢.

最佳答案 TRUNCATE TABLE可用于重置统计信息.

https://dev.mysql.com/doc/refman/5.7/en/performance-schema-table-characteristics.html

Summary tables can be truncated with TRUNCATE TABLE. Generally, the
effect is to reset the summary columns to 0 or NULL, not to remove
rows. This enables you to clear collected values and restart
aggregation.

点赞