在mysql 5.7和mysql 8中,哪个视图存储SHOW SLAVE STATUS数据?

fhg3lkii  于 2023-08-02  发布在  Mysql
关注(0)|答案(1)|浏览(129)

我想知道哪些视图可以在没有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;

wlp8pajw

wlp8pajw1#

由于MySQL 5.7复制信息存储在PERFORMANCE_SCHEMA表中。
我推荐阅读Jesper Krogh的优秀博客文章Replication Monitoring with the Performance Schema,其中也包含几个SQL示例。

相关问题