主从流复制的过程
主从数据库启动后,备库启动 walreceiver 进程,向主库发送请求连接;
主库接收到请求后,启动 walsender 进程,与 walreceiver 建立 TCP 连接;
从库发送最新的 WAL LSN 给主库(LSN 可以理解为日志的偏移量);
主库进行 LSN 对比,同时定期向从库发送心跳信息来确认备库的可用性,并将没有传递的 WAL 日志发送;
从库调用函数将 WAL 写入缓存,然后将 WAL 刷新到磁盘;
一、环境准备
大家可以用上篇一键安装脚本进行主备库的安装。本次演示异步流复制。
二、主库操作
postgres=# create role repl login replication encrypted password 'oLfex^5pfe';
cat <<'EOF' | tee -a $PGDATA/pg_hba.conf > /dev/null
# 配置postgresql集群主机 replication 免密登录
host replication all 192.168.59.140/32 trust
# 配置 同网段 主机密码登录
host all all 192.168.59.0/24 md5
EOF
[postgres@localhost ~]$ pg_ctl reload
三、从库操作
[postgres@localhost data]$ psql -U postgres -h 192.168.59.138 --port 5785
[root@localhost ~]# rm -rf /pgdb/data/*
[postgres@localhost data]$ pg_basebackup -h 192.168.59.138 -U repl -D /pgdb/data --write-recovery-conf --progress --verbose
[root@localhost data]# chmod -R 0700 /pgdb/data
[postgres@localhost data]$ ls $PGDATA/standby.signal &> /dev/null || touch $PGDATA/standby.signal
[postgres@localhost data]$ vi standby.signal
## 加入
standby_mode = 'on'
[postgres@localhost data]$ vi postgresql.conf
primary_conninfo = 'host=192.168.59.138 port=5785 user=repl password=oLfex^5pfe'
recovery_target_timeline = 'latest
max_connections = 1000
hot_standby = on
max_standby_streaming_delay = 30
wal_receiver_status_interval = 10s
hot_standby_feedback = on
wal_log_hints =on #主备库都需要修改
[postgres@localhost data]$ pg_ctl start
四、验证
postgres=# select client_addr,sync_state from pg_stat_replication;
postgres=# select pid,usename,application_name,client_addr,state,sync_state,sync_priority from pg_stat_replication;
postgres=#select pg_is_in_recovery(); #主备库角色判断,f为主
sync_state参数说明:
async: 这台服务器是异步的
sync: 这台服务器是同步的
potential: 这台服务器现在是异步的,但可能在当前的同步服务器失效时变成同步的
quorum: 这台服务器被当做规定数量后备服务器的候选
五、主备切换
1、通过pg_controldata命令将从库提升为主库(将只读模式变成读写)
[postgres@localhost ~]$ pg_controldata /pgdb/data/
[postgres@localhost ~]$ pg_ctl stop
从库:
[postgres@localhost data]$ pg_ctl promote
postgres=# select name,setting,category,short_desc from pg_settings where name ='primary_conninfo';
postgres=# select pg_is_in_recovery();
[postgres@localhost data]$pg_rewind --target-pgdata=/pgdb/data --source-server="host=192.168.59.138 port=5785 user=postgres password=123456 dbname=postgres" --progress
六、弊端
主从切换完成后需要重新做主从。
七、同步和异步复制的区别
同步(实时)复制配置:
synchronous_commit = on # 控制事务提交的同步方式。该参数决定了在事务提交时是否等待数据同步到磁盘上
synchronous_standby_names = ‘FIRST 2(pg02)’ # 该参数指定了在主服务器提交事务时,需要等待哪些热备服务器将数据同步到磁盘上