pg13 流复制在从属副本上返回空 pg_replication_slot。
select * from pg_replication_slots;
在从属副本上不返回任何内容
什么时候做
select status,slot_name, last_msg_receipt_time,latest_end_lsn from pg_stat_wal_receiver;
状态 | 插槽名称 | last_msg_receipt_time | latest_end_lsn | |
---|---|---|---|---|
流媒体 | 我的集群 | 2025-01-16 00:56:02.661538+00 | 4/84313340 | |
(1行) |
但在 MASTER 上。
select slot_name,active,restart_lsn from pg_replication_slots;
插槽名称 | 活跃 | 重新启动_lsn | |
---|---|---|---|
我的集群 | t | 4/85B7D598 | |
(1行) |
我希望 MASTER 和 SLAVE 都会返回相同的 slot_name。我说得对吗?
正如所料。复制槽是一种仅存在于主服务器上的数据结构。