本篇內(nèi)容主要講解“怎么使用pg_rewind”,感興趣的朋友不妨來(lái)看看。本文介紹的方法操作簡(jiǎn)單快捷,實(shí)用性強(qiáng)。下面就讓小編來(lái)帶大家學(xué)習(xí)“怎么使用pg_rewind”吧!

成都創(chuàng)新互聯(lián)公司是一家專注于網(wǎng)站制作、網(wǎng)站設(shè)計(jì)與策劃設(shè)計(jì),霞浦網(wǎng)站建設(shè)哪家好?成都創(chuàng)新互聯(lián)公司做網(wǎng)站,專注于網(wǎng)站建設(shè)十載,網(wǎng)設(shè)計(jì)領(lǐng)域的專業(yè)建站公司;建站業(yè)務(wù)涵蓋:霞浦等地區(qū)。霞浦做網(wǎng)站價(jià)格咨詢:028-86922220
pg_rewind
是postgresql主叢數(shù)據(jù)庫(kù)之同步數(shù)據(jù)目錄的工具。需要目標(biāo)服務(wù)器在postgresql.conf 中允許wal_log_hints,或者在 initdb初始化集群時(shí)允許 checksums ,full_page_writes也必須為on
pg_rewind只復(fù)制表數(shù)據(jù)文件中更改的塊;所有其他文件都被完整復(fù)制,包括配置文件。pg_rewind相對(duì)于使用pg_basebackup備份或rsync等工具的優(yōu)勢(shì)在于,pg_rewind不需要讀取數(shù)據(jù)庫(kù)中未更改的塊。這使得在數(shù)據(jù)庫(kù)很大且之間只有一小部分塊不同的情況下,速度會(huì)快得多。
pg_rewind [option...] { -D | --target-pgdata } directory { --source-pgdata=directory | --source-server=connstr
參數(shù):
-D directory --target-pgdata=directory
此選項(xiàng)指定與源同步的目標(biāo)數(shù)據(jù)目錄。在運(yùn)行pg_rewind之前,必須干凈關(guān)閉目標(biāo)服務(wù)器
--source-pgdata=directory
指定要與之同步的源服務(wù)器的數(shù)據(jù)目錄的文件系統(tǒng)路徑。此選項(xiàng)要求干凈關(guān)閉源服務(wù)器
--source-server=connstr
指定要連接到源PostgreSQL服務(wù)器的libpq連接字符串。連接必須是具有超級(jí)用戶訪問(wèn)權(quán)限的正常(非復(fù)制)連接。此選項(xiàng)要求源服務(wù)器正在運(yùn)行,而不是處于恢復(fù)模式。
-n --dry-run
除了實(shí)際修改目標(biāo)目錄之外,執(zhí)行所有操作。
-P --progress
使進(jìn)展報(bào)告。
實(shí)驗(yàn)使用兩臺(tái)主機(jī),都安裝postgresql-10.7,已配置流復(fù)制
主:192.168.56.5 m1
叢:192.168.56.25 m7
m1(主):創(chuàng)建測(cè)試表和數(shù)據(jù)
postgres=# create table test (id int,e_name varchar(100),e_mail varchar(100),d_id int); CREATE TABLE postgres=# \d List of relations Schema | Name | Type | Owner --------+------+-------+---------- public | test | table | postgres (1 row) postgres=# insert into test values(1,'zbs','123@126.com',10); INSERT 0 1 postgres=# select * from test; id | e_name | e_mail | d_id ----+--------+-------------+------ 1 | zbs | 123@126.com | 10 (1 row)
m7 (叢):查詢數(shù)據(jù)復(fù)制成功
[postgres@z_leader ~]$ psql postgres psql (10.7) Type "help" for help. postgres=# \d List of relations Schema | Name | Type | Owner --------+------+-------+---------- public | test | table | postgres (1 row) postgres=# select * from test; id | e_name | e_mail | d_id ----+--------+-------------+------ 1 | zbs | 123@126.com | 10 (1 row)
提升叢庫(kù)為新主庫(kù)
[postgres@z_leader data]$ pg_ctl promote -D /usr/local/pg/data waiting for server to promote.... done server promoted [postgres@z_leader data]$ psql postgres psql (10.7) Type "help" for help. postgres=# select pg_is_in_recovery(); pg_is_in_recovery ------------------- f (1 row)
m1(原主庫(kù))插入一條記錄,模擬原主庫(kù)上的數(shù)據(jù)沒有復(fù)制到原叢庫(kù)上
postgres=# insert into test values(2,'zbs1','124@126.com',10); INSERT 0 1 postgres=# select * from test; id | e_name | e_mail | d_id ----+--------+-------------+------ 1 | zbs | 123@126.com | 10 2 | zbs1 | 124@126.com | 10 (2 rows)
m7:在原叢庫(kù)上(已提升為主庫(kù))插入一條記錄并查看結(jié)果
postgres=# insert into test values(3,'zbs2','124@126.com',10); INSERT 0 1 postgres=# select * from test; id | e_name | e_mail | d_id ----+--------+-------------+------ 1 | zbs | 123@126.com | 10 3 | zbs2 | 124@126.com | 10 (2 rows)
m1 將原主庫(kù)變?yōu)樾轮鲙?kù)的叢庫(kù)
[postgres@localhost ~]$ kill -INT `head -1 /usr/local/pg/data/postmaster.pid`
--配置流復(fù)制文件和參數(shù)
[postgres@localhost data]$ mv recovery.done recovery.conf [postgres@localhost data]$ cat recovery.conf standby_mode = 'on' restore_command = 'cp /usr/local/pg/arch/%f' primary_conninfo = 'host=192.168.56.25 port=5432 user=rep' recovery_target_timeline = 'latest' [postgres@localhost data]$
--啟動(dòng)數(shù)據(jù)庫(kù)
[postgres@localhost ~]$ /usr/local/pg/bin/pg_ctl -D /usr/local/pg/data -l logfile start waiting for server to start.... done server started [postgres@localhost data]$ psql postgres psql (10.7) Type "help" for help. postgres=# select pg_is_in_recovery(); pg_is_in_recovery ------------------- t (1 row) postgres=# select * from test; id | e_name | e_mail | d_id ----+--------+-------------+------ 1 | zbs | 123@126.com | 10 2 | zbs1 | 124@126.com | 10 (2 rows)
--在m7上插入的記錄未能復(fù)制過(guò)來(lái)
---日志信息
2019-03-02 09:15:17.415 CST [2492] LOG: consistent recovery state reached at 0/D000098 2019-03-02 09:15:17.415 CST [2492] LOG: invalid record length at 0/D000098: wanted 24, got 0 2019-03-02 09:15:17.415 CST [2490] LOG: database system is ready to accept read only connections 2019-03-02 09:15:17.429 CST [2500] LOG: fetching timeline history file for timeline 6 from primary server 2019-03-02 09:15:17.460 CST [2500] FATAL: could not start WAL streaming: ERROR: requested starting point 0/D000000 on timeline 5 is not in this server's history DETAIL: This server's history forked from timeline 5 at 0/C003168. cp: missing destination file operand after `/usr/local/pg/arch/00000006.history' Try `cp --help' for more information. cp: missing destination file operand after `/usr/local/pg/arch/00000007.history' Try `cp --help' for more information. cp: missing destination file operand after `/usr/local/pg/arch/00000006.history' Try `cp --help' for more information. 2019-03-02 09:15:17.469 CST [2492] LOG: new timeline 6 forked off current database system timeline 5 before current recovery point 0/D000098 cp: missing destination file operand after `/usr/local/pg/arch/00000005000000000000000D
[postgres@localhost ~]$ kill -INT `head -1 /usr/local/pg/data/postmaster.pid`
---使得pg_rewind 同步數(shù)據(jù)庫(kù)時(shí)間線
[[postgres@localhost ~]$ pg_rewind --target-pgdata /usr/local/pg/data --source-server='host=192.168.56.25 port=5432 user=postgres dbname=postgres' -P connected to server servers diverged at WAL location 0/C003168 on timeline 5 rewinding from last common checkpoint at 0/C003010 on timeline 5 reading source file list reading target file list reading WAL in target need to copy 100 MB (total source directory size is 118 MB) 102599/102599 kB (100%) copied creating backup label and updating control file syncing target data directory Done!
--pg_rewind后此文件需要重新配置
[postgres@localhost data]$ cat recovery.conf standby_mode = 'on' restore_command = 'cp /usr/local/pg/arch/%f' primary_conninfo = 'host=192.168.56.25 port=5432 user=rep' recovery_target_timeline = 'latest'
[postgres@localhost ~]$ /usr/local/pg/bin/pg_ctl -D /usr/local/pg/data -l logfile start waiting for server to start.... done server started [postgres@localhost ~]$ psql postgres psql (10.7) Type "help" for help. postgres=# select * from test; id | e_name | e_mail | d_id ----+--------+-------------+------ 1 | zbs | 123@126.com | 10 3 | zbs2 | 124@126.com | 10 (2 rows) postgres=# select pg_is_in_recovery(); pg_is_in_recovery ------------------- t (1 row)
--原主庫(kù)沒有復(fù)制到叢庫(kù)的記錄消失,在新主庫(kù)上插入的記錄已同步
m7(新主庫(kù)) [postgres@z_leader ~]$ psql postgres psql (10.7) Type "help" for help. postgres=# insert into test values(4,'zbs2','124@126.com',10); INSERT 0 1 postgres=# select * from test; id | e_name | e_mail | d_id ----+--------+-------------+------ 1 | zbs | 123@126.com | 10 3 | zbs2 | 124@126.com | 10 4 | zbs2 | 124@126.com | 10 (3 rows)
m1(新叢庫(kù))
postgres=# select * from test; id | e_name | e_mail | d_id ----+--------+-------------+------ 1 | zbs | 123@126.com | 10 3 | zbs2 | 124@126.com | 10 4 | zbs2 | 124@126.com | 10 (3 rows)
到此,相信大家對(duì)“怎么使用pg_rewind”有了更深的了解,不妨來(lái)實(shí)際操作一番吧!這里是創(chuàng)新互聯(lián)網(wǎng)站,更多相關(guān)內(nèi)容可以進(jìn)入相關(guān)頻道進(jìn)行查詢,關(guān)注我們,繼續(xù)學(xué)習(xí)!
本文題目:怎么使用pg_rewind
本文鏈接:http://chinadenli.net/article22/pgjhcc.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供域名注冊(cè)、品牌網(wǎng)站建設(shè)、響應(yīng)式網(wǎng)站、ChatGPT、外貿(mào)建站、商城網(wǎng)站
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)