Many of us, old MySQL DBAs used
Seconds_Behind_Source
from SHOW REPLICA
STATUS
to find out the status and correct execution of
(asynchronous) replication.
Please pay attention of the new terminology. I’m sure we’ve all used the old terminology.
However, MySQL replication has evolved a lot and the replication team has worked to include a lot of useful information about all the replication flavors available with MySQL.
For example, we’ve added parallel replication, group replication,
… all that information is missing from the the good old
SHOW REPLICA STATUS
result.
There much better ways to monitoring and observing the
replication process(es) using Performance_Schema
.
Currently in Performance_Schema
, there are 15 tables
relating to replication instrumentation:
+------------------------------------------------------+
| …
[Read more]