postgresql_查看流复制同步方式

通过解读pg_stat_replication系统视图,在主库上看

postgres=# select usename,application_name,client_addr,sync_state from pg_stat_replication ;
 usename | application_name |  client_addr  | sync_state
---------+------------------+---------------+------------
 repuser | walreceiver      | 192.168.12.11 | async
async:表示备库为异步方式
potential:表示为同步方式
sync:当前备库为同步方式
posted @ 2021-11-01 16:14  罗论明  阅读(386)  评论(0)    收藏  举报