我想知道哪些视图可以在没有use show slave status
命令的情况下在两个版本中获得此信息,我需要使用标准的SQL命令。
即:
而不是执行。
show slave status\G;
字符串
然后查找Seconds_Behind_Master
列
....
Master_SSL_Cert:
Master_SSL_Cipher:
Master_SSL_Key:
Seconds_Behind_Master: 0
....
型
我想使用SQL查询类似的东西:
select Seconds_Behind_Master from view_here;
型
1条答案
按热度按时间wlp8pajw1#
由于MySQL 5.7复制信息存储在
PERFORMANCE_SCHEMA
表中。我推荐阅读Jesper Krogh的优秀博客文章Replication Monitoring with the Performance Schema,其中也包含几个SQL示例。