At the end we all agree that what really matters is the Query Response Time, isn’t it ?
MySQL 8.0 engineers have added more visibility in the summary
tables as explained in this previous post. But to add more details,
now the Performance_Schema
also collects the
statements latency and provide their distribution thanks to the
collected histogram data.
Two tables have been added to Performance_Schema:
-
events_statements_histogram_by_digest
: details about latency related to schema and query digest -
events_statements_histogram_global
: global latency summary across all schemas and queries
Let’s have a look at what we can see: …
[Read more]