os: centos 7.4
postgresql: 9.6.9
etcd: 3.2.18
patroni: 1.4.4web
本篇blog介紹下 etcd + patroni 發生切換時使用 callback 來從新設定 master 的 vip。
主要是方便自有機房或託管的,雲環境貌似不能綁定固定的vip。sql
官方文檔描述在callback時又這幾個狀態:centos
on_reload: run this script when configuration reload is triggered.
on_restart: run this script when the cluster restarts.
on_role_change: run this script when the cluster is being promoted or demoted.
on_start: run this script when the cluster starts.
on_stop: run this script when the cluster stops.bash
# su - postgres $ vi /usr/patroni/conf/patroni_postgresql.yml postgresql: callbacks: on_start: /usr/patroni/conf/patroni_callback.sh on_stop: /usr/patroni/conf/patroni_callback.sh on_role_change: /usr/patroni/conf/patroni_callback.sh
這個腳本的做用就是,當本地postgresql變爲 master 時,就綁定vip,變爲slave時,就刪除vip。svg
# cd /usr/patroni/conf/ # vi patroni_callback.sh #!/bin/bash readonly cb_name=$1 readonly role=$2 readonly scope=$3 function usage() { echo "Usage: $0 <on_start|on_stop|on_role_change> <role> <scope>"; exit 1; } echo "this is patroni callback $cb_name $role $scope" case $cb_name in on_stop) sudo ip addr del 192.168.56.100/24 dev enp0s8 label enp0s8:1 #sudo arping -q -A -c 1 -I enp0s8 192.168.56.100 sudo iptables -F ;; on_start) ;; on_role_change) if [[ $role == 'master' ]]; then sudo ip addr add 192.168.56.100/24 brd 192.168.56.255 dev enp0s8 label enp0s8:1 sudo arping -q -A -c 1 -I enp0s8 192.168.56.100 sudo iptables -F elif [[ $role == 'slave' ]]||[[ $role == 'replica' ]]||[[ $role == 'logical' ]]; then sudo ip addr del 192.168.56.100/24 dev enp0s8 label enp0s8:1 #sudo arping -q -A -c 1 -I enp0s8 192.168.56.100 sudo iptables -F fi ;; *) usage ;; esac
修改ip後,必定要使用 arpingpost
# visudo postgres ALL=(ALL) NOPASSWD:ALL
# chown -R postgres:postgres /usr/patroni/conf/* # ls -l total 8 -rwxr--r-x 1 postgres postgres 768 Aug 8 18:59 patroni_callback.sh -rw-r--r-- 1 postgres postgres 1616 Aug 8 18:44 patroni_postgresql.yml
參考:
https://postgresconf.org/system/events/document/000/000/228/Patroni_tutorial_4x3-2.pdfthis