pg高可用之repmgr(三)

   repmgr也可以实现自动故障转移的failover功能,相对于手动switchover,其配置上也有一些不同。

一、PostgreSQL共享库加载repmgr

若想要实现高可用集群的自动故障转移,就必须使用repmgrd的守护程序,用来监控和记录复制集群信息、检测集群复制故障并决策选出最佳服务器并提升为主服务器,启动repmgrd的同时需要我们在PostgreSQL数据库中添加repmgr的共享库。

$ vim /pg_data/pgsql11/data/postgresql.conf 
shared_preload_libraries = 'repmgr'


$ sudo systemctl retsart postgres11

二、修改repmgr配置文件

若需要实现failover,需要在repmgr配置文件中添加以下内容,修改参数后需要重启repmgr服务生效

$ vim /pg_data/pgsql11/repmgr.conf 
failover='automatic'                    # 开启自动故障转移
promote_command='/usr/local/pgsql11/bin/repmgr standby promote -f /pg_data/pgsql11/repmgr.conf --log-to-file'
follow_command='/usr/local/pgsql11/bin/repmgr standby follow -f /pg_data/pgsql11/repmgr.conf --log-to-file --upstream-node-id=%n'
#standby_disconnect_on_failover=true
#priority=100

monitoring_history=yes                  # 启动监控参数
reconnect_interval=5                    # 每间隔5s尝试一次重连
reconnect_attempts=3                    # 当primary节点宕机后,重试连接次数,默认为6
monitor_interval_secs=5                 # 监控数据默认采集周期
use_replication_slots=true              

location='location1'                    # 定义location
priority=99                             # 定义节点权重


$ sudo systemctl restart repmgr11

三、添加见证服务器

见证服务器并不是流复制架构中的一部分,而是一个普通的PostgreSQL实例。其目的是,单集群节点发生故障转移时,见证服务器提供证据,证明主节点本身不可用,而不是不同的物理网络中断导致的脑裂。

1、见证服务器使用前提概要

  • 见证服务器的部署可参考单实例部署文档,需要手动进行初始化并正常启动
  • PostgreSQL实例共享库加载repmgr
  • repmgr服务安装部署、配置文件修改

2、注册见证服务器

[postgres@172-16-104-57 pgsql11]$ repmgr -f /pg_data/pgsql11/repmgr.conf  witness register -h172.16.104.7 -Urepmgr -drepmgr --force
INFO: connecting to witness node "172-16-104-57" (ID: 4)
INFO: connecting to primary node
INFO: "repmgr" extension is already installed
INFO: witness registration complete
NOTICE: witness node "172-16-104-57" (ID: 4) successfully registered

[postgres@172-16-104-57 ~]$ repmgr -f /pg_data/pgsql11/repmgr.conf cluster show
 ID | Name          | Role    | Status    | Upstream      | Location  | Priority | Timeline | Connection string                                             
----+---------------+---------+-----------+---------------+-----------+----------+----------+----------------------------------------------------------------
 1  | 172-16-104-7  | standby |   running | 172-16-104-56 | location1 | 100      | 18       | host=172-16-104-7 user=repmgr dbname=repmgr connect_timeout=2 
 2  | 172-16-104-55 | standby |   running | 172-16-104-56 | location1 | 99       | 18       | host=172-16-104-55 user=repmgr dbname=repmgr connect_timeout=2
 3  | 172-16-104-56 | primary | * running |               | location1 | 100      | 18       | host=172-16-104-56 user=repmgr dbname=repmgr connect_timeout=2
 4  | 172-16-104-57 | witness | * running | 172-16-104-7  | location1 | 0        | n/a      | host=172.16.104.57 user=repmgr dbname=repmgr connect_timeout=2

四、failover实现

1、failover测试前集群信息查看

[postgres@172-16-104-57 ~]$ repmgr -f /pg_data/pgsql11/repmgr.conf cluster show
 ID | Name          | Role    | Status    | Upstream      | Location  | Priority | Timeline | Connection string                                             
----+---------------+---------+-----------+---------------+-----------+----------+----------+----------------------------------------------------------------
 1  | 172-16-104-7  | standby |   running | 172-16-104-56 | location1 | 100      | 18       | host=172-16-104-7 user=repmgr dbname=repmgr connect_timeout=2 
 2  | 172-16-104-55 | standby |   running | 172-16-104-56 | location1 | 99       | 18       | host=172-16-104-55 user=repmgr dbname=repmgr connect_timeout=2
 3  | 172-16-104-56 | primary | * running |               | location1 | 100      | 18       | host=172-16-104-56 user=repmgr dbname=repmgr connect_timeout=2
 4  | 172-16-104-57 | witness | * running | 172-16-104-7  | location1 | 0        | n/a      | host=172.16.104.57 user=repmgr dbname=repmgr connect_timeout=2

2、手动关闭primary节点,模拟故障宕机

[postgres@172-16-104-56 ~]$ sudo systemctl stop postgres11

3、通过见证服务器查看集群信息变化

-- 旧primary节点不可达,后续会根据配置文件设置重复几次重试连接primary节点,确认primary节点是否真正的无法使用
[postgres@172-16-104-57 ~]$ repmgr -f /pg_data/pgsql11/repmgr.conf cluster show
 ID | Name          | Role    | Status        | Upstream        | Location  | Priority | Timeline | Connection string                                             
----+---------------+---------+---------------+-----------------+-----------+----------+----------+----------------------------------------------------------------
 1  | 172-16-104-7  | standby |   running     | ? 172-16-104-56 | location1 | 100      | 18       | host=172-16-104-7 user=repmgr dbname=repmgr connect_timeout=2 
 2  | 172-16-104-55 | standby |   running     | ? 172-16-104-56 | location1 | 99       | 18       | host=172-16-104-55 user=repmgr dbname=repmgr connect_timeout=2
 3  | 172-16-104-56 | primary | ? unreachable | ?               | location1 | 100      |          | host=172-16-104-56 user=repmgr dbname=repmgr connect_timeout=2
 4  | 172-16-104-57 | witness | * running     | 172-16-104-7    | location1 | 0        | n/a      | host=172.16.104.57 user=repmgr dbname=repmgr connect_timeout=2

WARNING: following issues were detected
  - unable to connect to node "172-16-104-7" (ID: 1)'s upstream node "172-16-104-56" (ID: 3)
  - unable to determine if node "172-16-104-7" (ID: 1) is attached to its upstream node "172-16-104-56" (ID: 3)
  - unable to connect to node "172-16-104-55" (ID: 2)'s upstream node "172-16-104-56" (ID: 3)
  - unable to determine if node "172-16-104-55" (ID: 2) is attached to its upstream node "172-16-104-56" (ID: 3)
  - unable to connect to node "172-16-104-56" (ID: 3)
  - node "172-16-104-56" (ID: 3) is registered as an active primary but is unreachable

HINT: execute with --verbose option to see connection error messages

-- 当见证服务器确认旧primary节点不可达后,根据一定的规则选择standby节点并提升为新的primary节点
[postgres@172-16-104-57 ~]$ repmgr -f /pg_data/pgsql11/repmgr.conf cluster show
 ID | Name          | Role    | Status               | Upstream        | Location  | Priority | Timeline | Connection string                                             
----+---------------+---------+----------------------+-----------------+-----------+----------+----------+----------------------------------------------------------------
 1  | 172-16-104-7  | standby | ! running as primary |                 | location1 | 100      | 19       | host=172-16-104-7 user=repmgr dbname=repmgr connect_timeout=2 
 2  | 172-16-104-55 | standby |   running            | ? 172-16-104-56 | location1 | 99       | 18       | host=172-16-104-55 user=repmgr dbname=repmgr connect_timeout=2
 3  | 172-16-104-56 | primary | ? unreachable        | ?               | location1 | 100      |          | host=172-16-104-56 user=repmgr dbname=repmgr connect_timeout=2
 4  | 172-16-104-57 | witness | * running            | 172-16-104-7    | location1 | 0        | n/a      | host=172.16.104.57 user=repmgr dbname=repmgr connect_timeout=2

WARNING: following issues were detected
  - node "172-16-104-7" (ID: 1) is registered as standby but running as primary
  - unable to connect to node "172-16-104-55" (ID: 2)'s upstream node "172-16-104-56" (ID: 3)
  - unable to determine if node "172-16-104-55" (ID: 2) is attached to its upstream node "172-16-104-56" (ID: 3)
  - unable to connect to node "172-16-104-56" (ID: 3)
  - node "172-16-104-56" (ID: 3) is registered as an active primary but is unreachable

HINT: execute with --verbose option to see connection error messages



-- 提升新的primary节点完成后,旧的primary节点被至为failed
[postgres@172-16-104-57 ~]$ repmgr -f /pg_data/pgsql11/repmgr.conf cluster show
 ID | Name          | Role    | Status    | Upstream        | Location  | Priority | Timeline | Connection string                                             
----+---------------+---------+-----------+-----------------+-----------+----------+----------+----------------------------------------------------------------
 1  | 172-16-104-7  | primary | * running |                 | location1 | 100      | 19       | host=172-16-104-7 user=repmgr dbname=repmgr connect_timeout=2 
 2  | 172-16-104-55 | standby |   running | ? 172-16-104-56 | location1 | 99       | 18       | host=172-16-104-55 user=repmgr dbname=repmgr connect_timeout=2
 3  | 172-16-104-56 | primary | - failed  | ?               | location1 | 100      |          | host=172-16-104-56 user=repmgr dbname=repmgr connect_timeout=2
 4  | 172-16-104-57 | witness | * running | 172-16-104-7    | location1 | 0        | n/a      | host=172.16.104.57 user=repmgr dbname=repmgr connect_timeout=2

WARNING: following issues were detected
  - unable to connect to node "172-16-104-55" (ID: 2)'s upstream node "172-16-104-56" (ID: 3)
  - unable to determine if node "172-16-104-55" (ID: 2) is attached to its upstream node "172-16-104-56" (ID: 3)
  - unable to connect to node "172-16-104-56" (ID: 3)

HINT: execute with --verbose option to see connection error messages

4、手动将集群内其他standby节点指向行的primary节点

该步骤存疑,理论上故障转移过程中也会自动将该步骤的功能包含实现。

[postgres@172-16-104-55 ~]$ repmgr -f /pg_data/pgsql11/repmgr.conf  standby follow
NOTICE: attempting to find and follow current primary
INFO: local node 2 can attach to follow target node 1
DETAIL: local node's recovery point: 0/47000098; follow target node's fork point: 0/47000098
INFO: creating replication slot as user "repmgr"
NOTICE: setting node 2's upstream to node 1
NOTICE: restarting server using "sudo systemctl restart postgres11"
WARNING: unable to connect to old upstream node 3 to remove replication slot
HINT: if reusing this node, you should manually remove any inactive replication slots
WARNING: node "172-16-104-55" attached in state "startup"
NOTICE: STANDBY FOLLOW successful
DETAIL: standby attached to upstream node "172-16-104-7" (ID: 1)

[postgres@172-16-104-57 ~]$ repmgr -f /pg_data/pgsql11/repmgr.conf cluster show
 ID | Name          | Role    | Status    | Upstream     | Location  | Priority | Timeline | Connection string                                             
----+---------------+---------+-----------+--------------+-----------+----------+----------+----------------------------------------------------------------
 1  | 172-16-104-7  | primary | * running |              | location1 | 100      | 19       | host=172-16-104-7 user=repmgr dbname=repmgr connect_timeout=2 
 2  | 172-16-104-55 | standby |   running | 172-16-104-7 | location1 | 99       | 18       | host=172-16-104-55 user=repmgr dbname=repmgr connect_timeout=2
 3  | 172-16-104-56 | primary | - failed  | ?            | location1 | 100      |          | host=172-16-104-56 user=repmgr dbname=repmgr connect_timeout=2
 4  | 172-16-104-57 | witness | * running | 172-16-104-7 | location1 | 0        | n/a      | host=172.16.104.57 user=repmgr dbname=repmgr connect_timeout=2

WARNING: following issues were detected
  - unable to connect to node "172-16-104-56" (ID: 3)

HINT: execute with --verbose option to see connection error messages

5、重新将党籍的primary节点以standby的身份加入到集群中

[postgres@172-16-104-56 ~]$ repmgr -f /pg_data/pgsql11/repmgr.conf node rejoin -d'host=172-16-104-7 user=repmgr dbname=repmgr connect_timeout=2' --force-rewind
NOTICE: executing pg_rewind
DETAIL: pg_rewind command is "/usr/local/pgsql11/bin/pg_rewind -D '/pg_data/pgsql11/data' --source-server='host=172-16-104-7 user=repmgr dbname=repmgr connect_timeout=2'"
NOTICE: 0 files copied to /pg_data/pgsql11/data
INFO: creating replication slot as user "repmgr"
NOTICE: setting node 3's upstream to node 1
WARNING: unable to ping "host=172-16-104-56 user=repmgr dbname=repmgr connect_timeout=2"
DETAIL: PQping() returned "PQPING_NO_RESPONSE"
NOTICE: starting server using "sudo systemctl start postgres11"
WARNING: node "172-16-104-56" attached in state "startup"
INFO: waiting for node "172-16-104-56" (ID: 3) to connect to new primary; 1 of max 60 attempts (parameter "node_rejoin_timeout")
DETAIL: node "172-16-104-7" (ID: 3) is currrently attached to its upstream node in state "startup"
NOTICE: NODE REJOIN successful
DETAIL: node 3 is now attached to node 1

[postgres@172-16-104-57 ~]$ repmgr -f /pg_data/pgsql11/repmgr.conf cluster show
 ID | Name          | Role    | Status    | Upstream     | Location  | Priority | Timeline | Connection string                                             
----+---------------+---------+-----------+--------------+-----------+----------+----------+----------------------------------------------------------------
 1  | 172-16-104-7  | primary | * running |              | location1 | 100      | 19       | host=172-16-104-7 user=repmgr dbname=repmgr connect_timeout=2 
 2  | 172-16-104-55 | standby |   running | 172-16-104-7 | location1 | 99       | 18       | host=172-16-104-55 user=repmgr dbname=repmgr connect_timeout=2
 3  | 172-16-104-56 | standby |   running | 172-16-104-7 | location1 | 100      | 18       | host=172-16-104-56 user=repmgr dbname=repmgr connect_timeout=2
 4  | 172-16-104-57 | witness | * running | 172-16-104-7 | location1 | 0        | n/a      | host=172.16.104.57 user=repmgr dbname=repmgr connect_timeout=2
  • 2
    点赞
  • 3
    收藏
    觉得还不错? 一键收藏
  • 5
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 5
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值