codecamp

PostgreSQL pg_replication_origin_status

pg_replication_origin_status视图包含有关一个特定源已经重放了多少的信息。更多有关复制源的内容请见第 49 章

表 51.80. pg_replication_origin_status Columns

列类型

描述

local_id oid (参考 pg_replication_origin.roident)

内部的节点标识符

external_id text (参考 pg_replication_origin.roname)

外部的节点标识符

remote_lsn pg_lsn

源节点的 LSN,到这个位置的数据都已经被复制。

local_lsn pg_lsn

这个节点的 LSN,remote_lsn已经被复制到这里。使用异步提交时,在将数据持久化到磁盘前用它来刷入提交记录。



PostgreSQL pg_publication_tables
PostgreSQL pg_replication_slots
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

PostgreSQL SQL语言

PostgreSQL 服务器管理

PostgreSQL 客户端接口

PostgreSQL 服务器编程

PostgreSQL 参考

PostgreSQL 内部

PostgreSQL 附录

PostgreSQL 参考书目

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }