伍佰目录 短网址
  当前位置:海洋目录网 » 站长资讯 » 站长资讯 » 文章详细 订阅RssFeed

openGauss830版本中对于备份模块的增强与当前问题

来源:本站原创 浏览:111次 时间:2022-11-05

830版本发布后对备份这块做了很多增强,主要新增功能如下:

1.支持了pitr,总体步骤和pg类似

2.支持备机备份

3.支持远程基础备份

4.pg_receivexlog支持

5.解决主备环境下只剩下主机做basebackup阻塞业务的问题


目前还存在的问题:

1.基础备份不包含xlog内容

2.如果归档命令中使用test ! -f会造成归档失败


下面具体看看这些功能


pitr

修改归档模式

postgres=# alter system set archive_mode=on;
ALTER SYSTEM SET
postgres=# alter system set archive_command='cp %p /mnt/disk1/gaussarch/%f';
ALTER SYSTEM SET


重启数据库,做基础备份:

[omm@db01 ~]$ gs_basebackup -D /tmp/backup/ -Ft -p 5532 --checkpoint=fast
INFO:  The starting position of the xlog copy of the full build is: 20/41000688. The slot minimum LSN is: 20/41000688.
begin build tablespace list
finish build tablespace list
NOTICE:  pg_stop_backup complete, all required WAL segments have been archived


建表,查看时间戳

postgres=# create table test(id int);
CREATE TABLE
postgres=# \d
                        List of relations
 Schema | Name | Type  | Owner |             Storage              
--------+------+-------+-------+----------------------------------
 public | test | table | omm   | {orientation=row,compression=no}
(1 row)


postgres=# select current_timestamp;
        pg_systimestamp        
-------------------------------
 2020-09-15 10:40:52.941916+08
(1 row)


停止数据库,删除数据目录

[omm@db01 gaussdata]$ rm -rf *


解压基础备份包,注意使用gs_tar命令解压

[omm@db01 gaussdata]$ gs_tar -D . -F /tmp/backup/base.tar


[omm@db01 gaussdata]$ vi recovery.conf
standby_mode = 'on'
restore_command='cp /mnt/disk1/gaussarch/%f %p'
recovery_target_time='2020-09-15 10:40:52.941916+08'


启动数据库

[omm@db01 gaussdata]$ gs_ctl start


检查发现该表已恢复

[omm@db01 gaussdata]$ gsql postgres -p 5532 -r
gsql ((openGauss 1.0.0 build ) compiled at 2020-09-01 10:14:40 commit 0 last mr  )
Non-SSL connection (SSL connection is recommended when requiring high-security)
Type "help" for help.


postgres=# \d
                        List of relations
 Schema | Name | Type  | Owner |             Storage              
--------+------+-------+-------+----------------------------------
 public | test | table | omm   | {orientation=row,compression=no}
(1 row)


备机备份

在630版本在备库备份后报如下错误:

[opengauss@olddb02 ~]$ gs_basebackup -D /tmp/basebackup/  -p 5432
INFO:  Try to bind walsender thread to available CPUs in threadpool.
gs_basebackup: could not initiate base backup: FATAL:  WAL generated with full_page_writes=off was replayed since last restartpoint
HINT:  This means that the backup being taken on the standby is corrupt and should not be used. Enable full_page_writes and run CHECKPOINT on the master, and then try an online backup again.


会报出备机不支持备份,同时让你检查full_page_writes是否开启(full_page_writes是开启的)


这个缺陷在830版本已经修复:

[omm@db02 ~]$ gs_ctl query |grep local_role
        local_role                     : Standby
        local_role                     : Standby


做基础备份,可以看到可以备份成功

[omm@db02 ~]$ gs_basebackup -D /tmp/backup/ -p 5532 -Ft --checkpoint=fast
INFO:  The starting position of the xlog copy of the full build is: 21/1E000028. The slot minimum LSN is: 0/0.
begin build tablespace list
finish build tablespace list
[omm@db02 ~]$ ll /tmp/backup/
total 2133044
-rw------- 1 omm dbgrp 2184232960 Sep 15 11:00 base.tar


远程备份

在备机备份使用gs_basebackup备份远程主机数据,可以看到能够正常备份

[omm@db02 ~]$ gs_basebackup -h 192.168.1.1 -p 5532 -D /tmp/backup/ -Ft --checkpoint=fast
INFO:  The starting position of the xlog copy of the full build is: 21/1E000028. The slot minimum LSN is: 21/1F000000.
begin build tablespace list
finish build tablespace list
[omm@db02 ~]$ ll /tmp/backup/
total 2133036
-rw------- 1 omm dbgrp 2184221696 Sep 15 11:03 base.tar


pg_receivexlog

这个其实是很有用的一个功能,但是用的人不多,这个工具可以远程的实时将xlog文件以流的方式拷贝到本端,因为pg中的xlog十分重要,所以xlog除了归档之外最好有其他方式能够进行备份。而pg_receivexlog就是用来做这个事情的。


默认装完opengauss后bin目录下会有pg_receivexlog的二进制文件,这里演示在备机上实时拷贝主机xlog文件。


[omm@db02 ~]$ mkdir pg_receivexlog
[omm@db02 ~]$ pg_receivexlog -h 192.168.1.1 -p 5532 -D pg_receivexlog/ > pg_receivexlog.log 2>&1 &
[1] 50870


主库做一个日志切换:

postgres=# select pg_switch_xlog();
 pg_switch_xlog
----------------
 21/200002A0
(1 row)


备库查看日志已经同步过来了,可以看到有一个partial的文件,说明这个文件是源端最后那个文件,还没写满,还在实时拷贝。

[omm@db02 ~]$ ll pg_receivexlog
total 32768
-rw------- 1 omm dbgrp 16777216 Sep 15 11:17 000000010000002100000020
-rw------- 1 omm dbgrp 16777216 Sep 15 11:17 000000010000002100000021.partial



  推荐站点

  • At-lib分类目录At-lib分类目录

    At-lib网站分类目录汇集全国所有高质量网站,是中国权威的中文网站分类目录,给站长提供免费网址目录提交收录和推荐最新最全的优秀网站大全是名站导航之家

    www.at-lib.cn
  • 中国链接目录中国链接目录

    中国链接目录简称链接目录,是收录优秀网站和淘宝网店的网站分类目录,为您提供优质的网址导航服务,也是网店进行收录推广,站长免费推广网站、加快百度收录、增加友情链接和网站外链的平台。

    www.cnlink.org
  • 35目录网35目录网

    35目录免费收录各类优秀网站,全力打造互动式网站目录,提供网站分类目录检索,关键字搜索功能。欢迎您向35目录推荐、提交优秀网站。

    www.35mulu.com
  • 就要爱网站目录就要爱网站目录

    就要爱网站目录,按主题和类别列出网站。所有提交的网站都经过人工审查,确保质量和无垃圾邮件的结果。

    www.912219.com
  • 伍佰目录伍佰目录

    伍佰网站目录免费收录各类优秀网站,全力打造互动式网站目录,提供网站分类目录检索,关键字搜索功能。欢迎您向伍佰目录推荐、提交优秀网站。

    www.wbwb.net