暂无图片
暂无图片
5
暂无图片
暂无图片
暂无图片

pgbackrest 一键安装配置脚本分享

原创 黄山谷 2026-08-06
373

pgbackrest 一键安装配置脚本,附带一个 pg 单机,主备安装脚本,感兴趣的可以下载试试,有问题可以多多反馈,不断进步!

背景:手里很多项目上备份场景很多,这两天用自己之前的文档 + ai 搓了一个 pgbackrest 配置脚本,感兴趣的大家可以 多多下载测试测试;

模型 : 主用 DeepSeek-V4-flash+DeepSeek-V4-pro,消耗了 2 亿 token;

脚本支持:

架构支持:单机,集群
存储支持:文件系统,S3 对象储存
安装方式:本地源码编译安装
支持一键互信

项目地址:https://gitee.com/w_duo/install_pgbackrest

附带一个pg的一键安装脚本,项目地址:https://gitee.com/w_duo/install_pg
目前支持 单机,主备一键安装拉起,后续可能会增加更多ha架构功能(例如:Patroni 啥的,装的太多了,全是内网环境,每次都挠头!),也可能会独立出来,考虑中;

为啥两个脚本没放一起?考虑到有些场景可能不会考虑用到pgbackrest。


脚本和其他依赖包,我这里打包了,脚本直接从 gitee 上下载估计更方便,我后面更新问题也方便。

也可以联系我,我直接发你!

执行过程:

把脚本和安装包都解压到 /soft 下 ,自己配置下 镜像源


执行

bash /soft/install_pgbackrest.sh

下面是我以 S3 为例,安装过程

查看 S3 上的归档、备份文件

完整执行日志:

[root@pgbackrest-1 pgbackrest]# bash /soft/install_pgbackrest.sh

  ╔══════════════════════════════════════════════════════╗
  ║                                                      ║
  ║       pgBackRest 2.59.0  一键安装脚本                ║
  ║    适用系统: Kylin V10+ / RHEL 7+  (yum/dnf)         ║
  ║  运行方式: root 用户执行 install_pgbackrest.sh       ║
  ║                                                      ║
  ╚══════════════════════════════════════════════════════╝


 pgBackRest 2.59.0 安装 - 配置向导
 提示: 直接按回车使用方括号内的默认值

  ────────────────────────────────────────────────

    安装角色说明:
      backup_host : 备份专机, 集中存储备份仓库, 通过 SSH 免密管理所有数据库节点
      db_node     : 数据库节点, 本机运行 PostgreSQL, WAL 归档推送到备份主机
  ? 安装角色 (可选项: backup_host 备份主机 / db_node 数据库节点) [backup_host]: 

    存储后端说明:
      FILE : 备份仓库存储在 backup_host 本地文件系统 (默认)
      S3   : 备份仓库存储在 S3 兼容对象存储 (MinIO / AWS S3 等)
  ? 存储类型 (可选项: FILE 文件系统 / S3 对象存储) [FILE]: S3

    S3 连接参数:
  ? S3 服务端点 (必填, 如 http://10.10.3.69:9000 或 10.10.3.69:9000) []: http://10.10.3.69:9000
  ? S3 Region [us-east-1]: 
  ? S3 Bucket 名称 (必填) []: repo2
  ? S3 Access Key (必填) []: LMPRC0YOCZMngqZYIxYf
  ? S3 Secret Key (必填) []: h1EXTsMt78HpxMajrgQnipPUDGFy5ZAti24WSGzV
  ? S3 URI 风格 (可选项: path / host) [path]: 
  ? S3 验证 TLS (可选项: y / n) [n]: 
  ? postgres 用户家目录 [/home/postgres]: 
  ? 安装目录 (PGHOME) [/home/postgres/app/postgresql]: 
  ? 源码解压目录 [/home/postgres/soft]: 
  ? pgBackRest stanza 名称 [cluster1]: 
  ? pgBackRest 配置文件路径 [/etc/pgbackrest/pgbackrest.conf]: 

    集群节点信息 (备份主机通过 SSH 免密管理以下数据库节点):
  ? 数据库节点数量 (可选项: 1~5) [2]: 

    --- 节点 1 ---
  ? 节点 1 主机名/IP (必填) []: 10.10.3.155
  ? 节点 1 数据库端口 [6244]: 
  ? 节点 1 PGDATA 数据目录 [/data/pgdata]: 
  ? 节点 1 socket 路径 [/data/pgdata]: 
  ? 节点 1 数据库名 [postgres]: 
  ? 节点 1 数据库用户 [sysdba]: 
  ? 节点 1 数据库密码 (必填, 用于 .pgpass) []: sysdba_1A

    --- 节点 2 ---
  ? 节点 2 主机名/IP (必填) []: 10.10.3.160
  ? 节点 2 数据库端口 [6244]: 
  ? 节点 2 PGDATA 数据目录 [/data/pgdata]: 
  ? 节点 2 socket 路径 [/data/pgdata]: 
  ? 节点 2 数据库名 [postgres]: 
  ? 节点 2 数据库用户 [sysdba]: 
  ? 节点 2 数据库密码 (必填, 用于 .pgpass) []: sysdba_1A

    备份策略参数:
  ? 保留全备份份数 (可选项: 1~99) [3]: 
  ? 保留差异备份份数 (可选项: 1~99) [4]: 
  ? 保留归档天数 (可选项: 1~365) [14]: 

  压缩类型说明:
    lz4 : 压缩最快, CPU 开销最低, 压缩率较低
    zst : zstd 压缩, 速度与压缩率均衡, 现代推荐
    gz  : gzip 压缩, 兼容性最好, 速度与压缩率均衡 (默认)
    bz2 : bzip2 压缩, 压缩率最高, 速度最慢
    none: 不压缩, 磁盘占用最大, CPU 零开销
  ? 压缩类型 (可选项: lz4 / zst / gz / bz2 / none) [gz]: zst
  ? 压缩级别 (可选项: 1~9) [6]: 
  ? 归档压缩级别 (可选项: 1~9) [3]: 
  ? 从备库备份 (可选项: y/n) [y]: 
  ? 最大并行进程数 [4]: 
  ? 备份仓库目录 (S3 为 bucket 内路径前缀) [/backup/]: /backup/a1
  ? 备份主机对外地址 (db_node 回连用) [10.10.3.161]: 

  ╔════════════════════════════════════════════╗
  ║ 配置确认 - 备份主机                        ║
  ╠════════════════════════════════════════════╣
  ║ 安装角色 : backup_host (备份专机)          ║
  ║ 安装目录 : /home/postgres/app/postgresql   ║
  ║ 源码解压目录 : /home/postgres/soft         ║
  ║ Stanza : cluster1                          ║
  ║ 备份仓库 : /backup/a1                      ║
  ║ 备份主机地址 : 10.10.3.161                 ║
  ║ 节点数量 : 2                               ║
  ║ 保留全备份数 : 3                           ║
  ║ 保留差异数 : 4                             ║
  ║ 保留归档天数 : 14                          ║
  ║ 压缩类型 : zst                             ║
  ║ 压缩级别 : 6                               ║
  ║ 归档压缩级别 : 3                           ║
  ║ 从备库备份 : y                             ║
  ║ 最大并行 : 4                               ║
  ╚════════════════════════════════════════════╝

  ╔═════════════════════════════════╗
  ║ S3 存储后端                     ║
  ╠═════════════════════════════════╣
  ║ 端点 : http://10.10.3.69:9000   ║
  ║ Region : us-east-1              ║
  ║ Bucket : repo2                  ║
  ║ URI 风格 : path                 ║
  ║ 验证 TLS : n                    ║
  ╚═════════════════════════════════╝


  ╔═════════════════════════╗
  ║ 节点 1                  ║
  ╠═════════════════════════╣
  ║ 主机 : 10.10.3.155      ║
  ║ 端口 : 6244             ║
  ║ PGDATA : /data/pgdata   ║
  ║ socket : /data/pgdata   ║
  ║ 数据库 : postgres       ║
  ║ 用户 : sysdba           ║
  ╚═════════════════════════╝

  ╔═════════════════════════╗
  ║ 节点 2                  ║
  ╠═════════════════════════╣
  ║ 主机 : 10.10.3.160      ║
  ║ 端口 : 6244             ║
  ║ PGDATA : /data/pgdata   ║
  ║ socket : /data/pgdata   ║
  ║ 数据库 : postgres       ║
  ║ 用户 : sysdba           ║
  ╚═════════════════════════╝


  ┌────────────┐
  │  前置检查  │
  └────────────┘
  ✔ 当前用户: root
  ✔ 找到源码包: /soft/pgbackrest-2.59.0.tar.gz
    备份主机模式: 不要求本机 PG, 仅安装 pgbackrest 二进制 (编译依赖走 yum libpq-devel)
  ✔ postgres 用户就绪: 用户id=60000(postgres)
  ✔ 包管理器: dnf

    开始安装, 全程约 10~30 分钟 (取决于网络与机器性能)


  ┌────────────────┐
  │  安装编译依赖  │
  └────────────────┘
  ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░   0%  进入第 1/7 阶段
    确保 python3 可用
  ✔ meson 可用: 1.2.1
  ✔ ninja 可用: 1.11.1
    安装编译依赖: lz4 libpq libssh2 libzstd (详情: /tmp/pgbackrest_dep_install.log)
  ⚠ 部分依赖通过 yum/dnf 安装失败,将尝试用 PG 自带的 libpq 编译
  ✔ 依赖安装完成
  ███░░░░░░░░░░░░░░░░░░░░░░░░░░░  10%  已完成 1/7 阶段

  ┌──────────────────────┐
  │  创建目录与配置文件  │
  └──────────────────────┘
  ███░░░░░░░░░░░░░░░░░░░░░░░░░░░  10%  进入第 2/7 阶段
  ✔ 目录已创建: repo=/backup/a1 /etc/pgbackrest
    写入 /etc/pgbackrest/pgbackrest.conf
  ✔ 备份主机配置已生成: /etc/pgbackrest/pgbackrest.conf (2 个节点)
    生成 /home/postgres/.pgpass (数据库节点认证)
  ✔ .pgpass 已生成: /home/postgres/.pgpass (2 个节点)
  ✔ 目录与配置文件就绪
  ██████░░░░░░░░░░░░░░░░░░░░░░░░  20%  已完成 2/7 阶段

  ┌──────────────────────┐
  │  授权 postgres 用户  │
  └──────────────────────┘
  ██████░░░░░░░░░░░░░░░░░░░░░░░░  20%  进入第 3/7 阶段
  ✔ 目录与文件权限设置完成

  ⚠ SSH 免密需手动配置 (脚本不再自动执行 ssh-copy-id):
  ⚠   1) 生成密钥 (如已存在可跳过): su - postgres -c 'ssh-keygen -t rsa -N "" -f ~/.ssh/id_rsa'
  ⚠   2) 推送公钥到节点 1: su - postgres -c 'ssh-copy-id -o StrictHostKeyChecking=no postgres@10.10.3.155'
  ⚠   2) 推送公钥到节点 2: su - postgres -c 'ssh-copy-id -o StrictHostKeyChecking=no postgres@10.10.3.160'
  ⚠   3) 验证全部节点: su - postgres -c 'ssh postgres@<节点IP> hostname'

  ✔ 权限配置完成
  █████████░░░░░░░░░░░░░░░░░░░░░  30%  已完成 3/7 阶段

  ┌────────────────────────────┐
  │  生成 postgres 安装子脚本  │
  └────────────────────────────┘
  █████████░░░░░░░░░░░░░░░░░░░░░  30%  进入第 4/7 阶段
  ✔ 子脚本生成完成
  ████████████░░░░░░░░░░░░░░░░░░  40%  已完成 4/7 阶段

  ┌──────────────────────────────────────────┐
  │  postgres 段执行 (编译/初始化/首次备份)  │
  └──────────────────────────────────────────┘
  ████████████░░░░░░░░░░░░░░░░░░  40%  进入第 5/7 阶段
    su - postgres -c bash /tmp/pgbr_install_part2.sh

  ┌──────────────────────────┐
  │  postgres 段 · 解压源码  │
  └──────────────────────────┘
  ⚠ 源码已存在,跳过解压: /home/postgres/soft/pgbackrest-2.59.0

  ┌────────────────────────────┐
  │  postgres 段 · meson 配置  │
  └────────────────────────────┘
    使用系统 libpq
    meson setup --prefix=/home/postgres/app/postgresql --buildtype=release
  ✔ meson setup 完成

  ┌────────────────────────────┐
  │  postgres 段 · ninja 编译  │
  └────────────────────────────┘
    ninja -C build -j2 (并行编译,请耐心等待)
  ✔ ninja build 完成
    ninja -C build install
  ✔ ninja install 完成
    pgbackrest 版本: pgBackRest 2.59.0

  ┌──────────────────────────────┐
  │  postgres 段 · 节点版本对齐  │
  └──────────────────────────────┘
    backup_host 版本(基准): 2.59.0
  ✔ 10.10.3.155: 2.59.0 (已与 backup_host 一致)
  ✔ 10.10.3.160: 2.59.0 (已与 backup_host 一致)


  ┌──────────────────────────────────────────────┐
  │  postgres 段 · 远程写入节点 pgbackrest.conf  │
  └──────────────────────────────────────────────┘
    需各节点已手动配置 postgres 用户 SSH 免密 (见 [3/7] 提示)
    写入节点 10.10.3.155 的 /etc/pgbackrest/pgbackrest.conf
** WARNING: connection is not using a post-quantum key exchange algorithm.
** This session may be vulnerable to "store now, decrypt later" attacks.
** The server may need to be upgraded. See https://openssh.com/pq.html

Authorized users only. All activities may be monitored and reported.
  [写入完成] 31 行
  ✔ 节点 10.10.3.155 配置文件已写入
    写入节点 10.10.3.160 的 /etc/pgbackrest/pgbackrest.conf
** WARNING: connection is not using a post-quantum key exchange algorithm.
** This session may be vulnerable to "store now, decrypt later" attacks.
** The server may need to be upgraded. See https://openssh.com/pq.html

Authorized users only. All activities may be monitored and reported.
  [写入完成] 31 行
  ✔ 节点 10.10.3.160 配置文件已写入


  ┌──────────────────────────────────────┐
  │  postgres 段 · 远程配置节点归档参数  │
  └──────────────────────────────────────┘
    需各节点已手动配置 postgres 用户 SSH 免密 (见 [3/7] 提示)
    配置节点 10.10.3.155:6244 archive_command (ALTER SYSTEM SET)
** WARNING: connection is not using a post-quantum key exchange algorithm.
** This session may be vulnerable to "store now, decrypt later" attacks.
** The server may need to be upgraded. See https://openssh.com/pq.html

Authorized users only. All activities may be monitored and reported.
ALTER SYSTEM
** WARNING: connection is not using a post-quantum key exchange algorithm.
** This session may be vulnerable to "store now, decrypt later" attacks.
** The server may need to be upgraded. See https://openssh.com/pq.html

Authorized users only. All activities may be monitored and reported.
ALTER SYSTEM
** WARNING: connection is not using a post-quantum key exchange algorithm.
** This session may be vulnerable to "store now, decrypt later" attacks.
** The server may need to be upgraded. See https://openssh.com/pq.html

Authorized users only. All activities may be monitored and reported.
 pg_reload_conf 
----------------
 t
(1 row)

  ✔ 节点 10.10.3.155 归档参数已配置并 reload
    配置节点 10.10.3.160:6244 archive_command (ALTER SYSTEM SET)
** WARNING: connection is not using a post-quantum key exchange algorithm.
** This session may be vulnerable to "store now, decrypt later" attacks.
** The server may need to be upgraded. See https://openssh.com/pq.html

Authorized users only. All activities may be monitored and reported.
ALTER SYSTEM
** WARNING: connection is not using a post-quantum key exchange algorithm.
** This session may be vulnerable to "store now, decrypt later" attacks.
** The server may need to be upgraded. See https://openssh.com/pq.html

Authorized users only. All activities may be monitored and reported.
ALTER SYSTEM
** WARNING: connection is not using a post-quantum key exchange algorithm.
** This session may be vulnerable to "store now, decrypt later" attacks.
** The server may need to be upgraded. See https://openssh.com/pq.html

Authorized users only. All activities may be monitored and reported.
 pg_reload_conf 
----------------
 t
(1 行记录)

  ✔ 节点 10.10.3.160 归档参数已配置并 reload


  ┌───────────────────────────────┐
  │  postgres 段 · stanza-create  │
  └───────────────────────────────┘
    请确认各数据库节点已先完成 pgBackRest 安装并启用归档, 再执行 stanza-create
    pgbackrest --stanza=cluster1 stanza-create
2026-08-07 02:16:01.200 P00   INFO: stanza-create command begin 2.59.0: --cmd-ssh=/usr/bin/ssh --exec-id=46029-6beaf9df --log-level-console=detail --log-level-file=detail --log-path=/backup/a1 --log-subprocess --pg1-database=postgres --pg2-database=postgres --pg1-host=10.10.3.155 --pg2-host=10.10.3.160 --pg1-host-user=postgres --pg2-host-user=postgres --pg1-path=/data/pgdata --pg2-path=/data/pgdata --pg1-port=6244 --pg2-port=6244 --pg1-socket-path=/data/pgdata --pg2-socket-path=/data/pgdata --pg1-user=sysdba --pg2-user=sysdba --repo1-path=/backup/a1 --repo1-s3-bucket=repo2 --repo1-s3-endpoint=http://10.10.3.69:9000 --repo1-s3-key=<redacted> --repo1-s3-key-secret=<redacted> --repo1-s3-region=us-east-1 --repo1-s3-uri-style=path --no-repo1-storage-verify-tls --repo1-type=s3 --stanza=cluster1
2026-08-07 02:16:01.458 P00   INFO: stanza-create for stanza 'cluster1' on repo1
2026-08-07 02:16:01.667 P00 DETAIL: statistics: {"http.client":{"total":2},"http.request":{"total":10},"http.session":{"total":2},"socket.client":{"total":2},"socket.session":{"total":2}}
2026-08-07 02:16:01.667 P00   INFO: stanza-create command end: completed successfully (468ms)
  ✔ stanza 创建完成

  ┌──────────────────────────────────┐
  │  postgres 段 · pgbackrest check  │
  └──────────────────────────────────┘
2026-08-07 02:16:01.675 P00   INFO: check command begin 2.59.0: --no-archive-mode-check --archive-timeout=60 --backup-standby=y --cmd-ssh=/usr/bin/ssh --exec-id=46043-1a94a1ca --log-level-console=detail --log-level-file=detail --log-path=/backup/a1 --log-subprocess --pg1-database=postgres --pg2-database=postgres --pg1-host=10.10.3.155 --pg2-host=10.10.3.160 --pg1-host-user=postgres --pg2-host-user=postgres --pg1-path=/data/pgdata --pg2-path=/data/pgdata --pg1-port=6244 --pg2-port=6244 --pg1-socket-path=/data/pgdata --pg2-socket-path=/data/pgdata --pg1-user=sysdba --pg2-user=sysdba --repo1-path=/backup/a1 --repo1-s3-bucket=repo2 --repo1-s3-endpoint=http://10.10.3.69:9000 --repo1-s3-key=<redacted> --repo1-s3-key-secret=<redacted> --repo1-s3-region=us-east-1 --repo1-s3-uri-style=path --no-repo1-storage-verify-tls --repo1-type=s3 --stanza=cluster1
2026-08-07 02:16:01.934 P00   INFO: check repo1 (standby)
2026-08-07 02:16:01.937 P00   INFO: switch wal not performed because this is a standby
2026-08-07 02:16:01.937 P00   INFO: check repo1 configuration (primary)
2026-08-07 02:16:01.955 P00   INFO: check repo1 archive for WAL (primary)
2026-08-07 02:16:02.059 P00   INFO: WAL segment 00000001000000000000001F successfully archived to '/backup/a1/archive/cluster1/17-1/0000000100000000/00000001000000000000001F-599c3a41e246825e1c12d1d6860a473fd6996279.gz' on repo1
2026-08-07 02:16:02.261 P00 DETAIL: statistics: {"http.client":{"total":1},"http.request":{"total":7},"http.session":{"total":1},"socket.client":{"total":1},"socket.session":{"total":1}}
2026-08-07 02:16:02.261 P00   INFO: check command end: completed successfully (586ms)
  ✔ check 通过

  ┌───────────────────────────────────────────────┐
  │  postgres 段 · 首次全量备份 (--archive-copy)  │
  └───────────────────────────────────────────────┘
    pgbackrest --stanza=cluster1 --archive-copy --type=full backup
2026-08-07 02:16:02.270 P00   INFO: backup command begin 2.59.0: --archive-copy --no-archive-mode-check --archive-timeout=60 --backup-standby=y --cmd-ssh=/usr/bin/ssh --compress-level=6 --compress-type=zst --exec-id=46057-67971b13 --log-level-console=detail --log-level-file=detail --log-path=/backup/a1 --log-subprocess --pg1-database=postgres --pg2-database=postgres --pg1-host=10.10.3.155 --pg2-host=10.10.3.160 --pg1-host-user=postgres --pg2-host-user=postgres --pg1-path=/data/pgdata --pg2-path=/data/pgdata --pg1-port=6244 --pg2-port=6244 --pg1-socket-path=/data/pgdata --pg2-socket-path=/data/pgdata --pg1-user=sysdba --pg2-user=sysdba --process-max=4 --repo1-block --repo1-bundle --repo1-path=/backup/a1 --repo1-retention-archive=14 --repo1-retention-diff=4 --repo1-retention-full=3 --repo1-s3-bucket=repo2 --repo1-s3-endpoint=http://10.10.3.69:9000 --repo1-s3-key=<redacted> --repo1-s3-key-secret=<redacted> --repo1-s3-region=us-east-1 --repo1-s3-uri-style=path --no-repo1-storage-verify-tls --repo1-type=s3 --stanza=cluster1 --start-fast --type=full
2026-08-07 02:16:02.538 P00   INFO: execute backup start: backup begins after the requested immediate checkpoint completes
2026-08-07 02:16:02.573 P00   INFO: backup start archive = 000000010000000000000020, lsn = 0/20000028
2026-08-07 02:16:02.573 P00   INFO: wait for replay on the standby to reach 0/20000028
2026-08-07 02:16:02.597 P00   INFO: replay on the standby reached 0/20000028
2026-08-07 02:16:02.597 P00   INFO: check archive for segment 000000010000000000000020
2026-08-07 02:16:02.701 P00   WARN: exclude special file '/data/pgdata/.s.PGSQL.6244' from backup
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/1/1417
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/1/1418
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/1/14319
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/1/14324
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/1/14329
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/1/14334
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/1/2224
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/1/2328
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/1/2336
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/1/2604
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/1/2611
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/1/2613
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/1/2620
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/1/2830
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/1/2832
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/1/2834
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/1/2995
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/1/3118
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/1/3256
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/1/3350
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/1/3381
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/1/3429
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/1/3430
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/1/3439
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/1/3466
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/1/3501
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/1/3576
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/1/3596
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/1/3598
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/1/4143
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/1/4145
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/1/4147
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/1/4149
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/1/4151
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/1/4153
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/1/4155
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/1/4157
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/1/4159
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/1/4163
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/1/4165
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/1/4167
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/1/4169
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/1/4171
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/1/4173
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/1/6102
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/1/6104
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/1/6106
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/1/6175
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/1/6228
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/1/6237
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/1/826
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/16385/1417
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/16385/1418
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/16385/14319
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/16385/14324
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/16385/14329
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/16385/14334
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/16385/2224
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/16385/2328
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/16385/2336
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/16385/2604
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/16385/2611
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/16385/2613
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/16385/2620
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/16385/2830
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/16385/2832
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/16385/2834
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/16385/2995
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/16385/3118
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/16385/3256
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/16385/3350
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/16385/3381
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/16385/3429
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/16385/3430
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/16385/3439
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/16385/3466
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/16385/3501
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/16385/3576
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/16385/3596
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/16385/3598
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/16385/4143
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/16385/4145
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/16385/4147
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/16385/4149
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/16385/4151
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/16385/4153
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/16385/4155
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/16385/4157
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/16385/4159
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/16385/4163
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/16385/4165
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/16385/4167
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/16385/4169
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/16385/4171
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/16385/4173
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/16385/6102
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/16385/6104
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/16385/6106
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/16385/6175
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/16385/6228
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/16385/6237
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/16385/826
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/4/1417
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/4/1418
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/4/14319
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/4/14324
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/4/14329
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/4/14334
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/4/2224
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/4/2328
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/4/2336
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/4/2604
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/4/2611
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/4/2613
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/4/2620
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/4/2830
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/4/2832
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/4/2834
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/4/2995
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/4/3118
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/4/3256
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/4/3350
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/4/3381
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/4/3429
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/4/3430
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/4/3439
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/4/3466
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/4/3501
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/4/3576
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/4/3596
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/4/3598
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/4/4143
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/4/4145
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/4/4147
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/4/4149
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/4/4151
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/4/4153
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/4/4155
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/4/4157
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/4/4159
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/4/4163
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/4/4165
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/4/4167
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/4/4169
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/4/4171
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/4/4173
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/4/6102
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/4/6104
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/4/6106
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/4/6175
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/4/6228
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/4/6237
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/4/826
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/5/1417
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/5/1418
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/5/14319
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/5/14324
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/5/14329
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/5/14334
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/5/2224
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/5/2328
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/5/2336
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/5/2604
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/5/2611
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/5/2613
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/5/2620
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/5/2830
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/5/2832
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/5/2834
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/5/2995
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/5/3118
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/5/3256
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/5/3350
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/5/3381
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/5/3429
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/5/3430
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/5/3439
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/5/3466
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/5/3501
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/5/3576
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/5/3596
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/5/3598
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/5/4143
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/5/4145
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/5/4147
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/5/4149
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/5/4151
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/5/4153
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/5/4155
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/5/4157
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/5/4159
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/5/4163
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/5/4165
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/5/4167
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/5/4169
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/5/4171
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/5/4173
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/5/6102
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/5/6104
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/5/6106
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/5/6175
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/5/6228
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/5/6237
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/base/5/826
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/global/1214
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/global/2846
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/global/2964
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/global/2966
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/global/3592
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/global/4060
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/global/4175
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/global/4177
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/global/4181
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/global/4183
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/global/4185
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/global/6000
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/global/6100
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/global/6243
2026-08-07 02:16:03.169 P00 DETAIL: store zero-length file /data/pgdata/global/6244
2026-08-07 02:16:03.716 P01 DETAIL: backup file 10.10.3.155:/data/pgdata/postgresql.conf.bak (bundle 1/0, 30.1KB, 0.10%) checksum b42b818bdd904bf24edebd63c2e4f843ebfa16a3
2026-08-07 02:16:03.716 P01 DETAIL: backup file 10.10.3.155:/data/pgdata/postgresql.conf (bundle 1/9530, 1.8KB, 0.10%) checksum 93a76378c98cc919e51f00014501eb6e0f740b2f
2026-08-07 02:16:03.716 P01 DETAIL: backup file 10.10.3.155:/data/pgdata/pg_ident.conf (bundle 1/10415, 2.6KB, 0.11%) checksum 99e7ff6b35b1cd1d2a5a5d3f79aee2fd9f6a9ebf
2026-08-07 02:16:03.716 P01 DETAIL: backup file 10.10.3.155:/data/pgdata/pg_hba.conf.bak (bundle 1/11585, 5.6KB, 0.13%) checksum feae4132a45d62961b02c47a5c9792d4f60c8851
2026-08-07 02:16:03.716 P01 DETAIL: backup file 10.10.3.155:/data/pgdata/pg_hba.conf (bundle 1/13737, 5.7KB, 0.15%) checksum 0e8c8f6f00f6d48db69ae2015b98bb2c511158a9
2026-08-07 02:16:03.716 P01 DETAIL: backup file 10.10.3.155:/data/pgdata/PG_VERSION (bundle 1/15913, 3B, 0.15%) checksum ad48103e4fc71796e9708cafc43adeed0d1076b7
2026-08-07 02:16:03.716 P01 DETAIL: backup file 10.10.3.155:/data/pgdata/pg_commit_ts/0000 (bundle 1/15925, 8KB, 0.17%) checksum a70778cd57de75b94454d3e09f6bb5e68455762d
2026-08-07 02:16:03.716 P01 DETAIL: backup file 10.10.3.155:/data/pgdata/.s.PGSQL.6244.lock (bundle 1/16008, 49B, 0.18%) checksum 8193cbc793e916248cfc280c3330fe3c4da5c429
2026-08-07 02:16:03.716 P01 DETAIL: backup file 10.10.3.155:/data/pgdata/postgresql.auto.conf (bundle 1/16060, 207B, 0.18%) checksum 2f3e84e921714d76d8780ca0bcb13be18c5606ab
2026-08-07 02:16:03.716 P01 DETAIL: backup file 10.10.3.155:/data/pgdata/current_logfiles (bundle 1/16229, 44B, 0.18%) checksum 7865f05625540e03db2afa4a3a8b30a6627b0794
2026-08-07 02:16:03.716 P01 DETAIL: backup file 10.10.3.155:/data/pgdata/pg_logical/replorigin_checkpoint (bundle 1/16282, 8B, 0.18%) checksum 347fc8f2df71bd4436e38bd1516ccd7ea0d46532
2026-08-07 02:16:03.716 P01 DETAIL: backup file 10.10.3.155:/data/pgdata/global/pg_control (bundle 1/16299, 8KB, 0.20%) checksum b1a6e3cc9790ae708e039f8a6059b6cd20db731b
2026-08-07 02:16:04.425 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/2606 (bundle 3/0, 24KB, 0.28%) checksum 99f35e4ea8a26017ab4342d8a6599eb2ad23ff5b
2026-08-07 02:16:04.425 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/2605_vm (bundle 3/3861, 8KB, 0.31%) checksum b69d48d375de2053270b1fff6ea896f6f81243a2
2026-08-07 02:16:04.425 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/2605_fsm (bundle 3/3903, 24KB, 0.38%) checksum fed5dbac3d31eac1eff9f1d19a0dbae3f125cd26
2026-08-07 02:16:04.425 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/2605 (bundle 3/4055, 16KB, 0.44%) checksum ac7994a8364e51164a56ebacb370fc7339712389
2026-08-07 02:16:04.425 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/2603_vm (bundle 3/6515, 8KB, 0.46%) checksum 86aed3a6ca550e15d46d3517a93fc4d51ad0535c
2026-08-07 02:16:04.425 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/2603_fsm (bundle 3/6558, 24KB, 0.54%) checksum df3dbf932dfb6c578d697b82a4e6c8e123a854de
2026-08-07 02:16:04.425 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/2603 (bundle 3/6724, 40KB, 0.67%) checksum 979ffd3a0e42ee251a17021f3573e9bc33cb448d
2026-08-07 02:16:04.425 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/2602_vm (bundle 3/12892, 8KB, 0.70%) checksum 20f00e904d346fc3edfc3a937f71d778883e88f2
2026-08-07 02:16:04.425 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/2602_fsm (bundle 3/12935, 24KB, 0.77%) checksum 6ea3406f5c8b1f3d6629ad88b022c3775ddec22b
2026-08-07 02:16:04.425 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/2602 (bundle 3/13101, 56KB, 0.96%) checksum f84c51433d2ad4f3e25fae1e10160ff665c239b8
2026-08-07 02:16:04.425 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/2601_vm (bundle 3/21155, 8KB, 0.98%) checksum dd9303f7b3ecb3703cebd9c61c928ee0f690b7b9
2026-08-07 02:16:04.425 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/2601_fsm (bundle 3/21197, 24KB, 1.06%) checksum 14eabf611940e704d2de8f26f208a4cab4f3950b
2026-08-07 02:16:04.425 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/2601 (bundle 3/21342, 8KB, 1.08%) checksum 3931866433f09444c58f84b7235dc1dc5a80f0a4
2026-08-07 02:16:04.425 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/2600_vm (bundle 3/21534, 8KB, 1.11%) checksum f2f31965a6405ba785b7f51859b30756281b71c4
2026-08-07 02:16:04.425 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/2600_fsm (bundle 3/21576, 24KB, 1.19%) checksum ff2c96ed61411d9ed86f99379c8a9dec7d12e3be
2026-08-07 02:16:04.425 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/2600 (bundle 3/21727, 16KB, 1.24%) checksum fe7fd76d1ae33b15713897de8e61e7dd2ab38ba8
2026-08-07 02:16:04.425 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/2579 (bundle 3/24201, 16KB, 1.29%) checksum fa437dc7fe8466c2099c81657b0b35e2121e4959
2026-08-07 02:16:04.425 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/2337 (bundle 3/24695, 8KB, 1.32%) checksum 7cdfa90eed84a033d1ae4fd2ae8fa8b2646f9d86
2026-08-07 02:16:04.425 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/2228 (bundle 3/24752, 16KB, 1.37%) checksum 24d2bde7d2f1ed3e84b3d2fbf0f60637a9dde457
2026-08-07 02:16:04.425 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/2187 (bundle 3/24910, 8KB, 1.40%) checksum 42c11e337bb0c30aaf7d246c8430d0aa3adb8115
2026-08-07 02:16:04.425 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/175 (bundle 3/24967, 8KB, 1.42%) checksum ff238621245de4bb91c038e697042dbc15628a8d
2026-08-07 02:16:04.425 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/174 (bundle 3/25024, 8KB, 1.45%) checksum db852111f393d18bb2f48bd1122aa63e9b5f68c1
2026-08-07 02:16:04.425 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/14335 (bundle 3/25081, 8KB, 1.47%) checksum 9845ae7baa7a57eec140df7dbd6ecad0649d4a01
2026-08-07 02:16:04.425 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/14331_vm (bundle 3/25138, 8KB, 1.50%) checksum 363c6c1562674fea89cfdf4a7ddab8c22bcd388a
2026-08-07 02:16:04.425 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/14331_fsm (bundle 3/25180, 24KB, 1.58%) checksum daf82623eba2c44b34b164ac969bbe26c6a17827
2026-08-07 02:16:04.425 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/14331 (bundle 3/25325, 8KB, 1.60%) checksum 5b4e0f86f6d1cb59f01d24ea1a04c079ecfc272d
2026-08-07 02:16:04.425 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/14330 (bundle 3/25999, 8KB, 1.63%) checksum c78737100a49bf46c5cf6cdbd097dd5e4e0fe560
2026-08-07 02:16:04.425 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/14326_vm (bundle 3/26056, 8KB, 1.66%) checksum b6ba61f0ecc5f81638a9eb317b777795ec924be0
2026-08-07 02:16:04.425 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/14326_fsm (bundle 3/26098, 24KB, 1.73%) checksum 2df350e337a1db82fd2edc362d136c02b1af3151
2026-08-07 02:16:04.425 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/14326 (bundle 3/26243, 8KB, 1.76%) checksum 5e8af9a9663c61bc1dbbc28dfb424ab9803006d5
2026-08-07 02:16:04.425 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/14325 (bundle 3/26734, 8KB, 1.79%) checksum 1a765d5bf603bbd576083dc50d9a04dd56886e63
2026-08-07 02:16:04.425 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/14321_vm (bundle 3/26791, 8KB, 1.81%) checksum 4191d5d6387417bfb98a16f4af245dc1f2ec1c7d
2026-08-07 02:16:04.425 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/14321_fsm (bundle 3/26833, 24KB, 1.89%) checksum 2f288afc02628a254dfc5f3c1645c4acd7d59db5
2026-08-07 02:16:04.425 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/14321 (bundle 3/26978, 8KB, 1.92%) checksum eff28b00891b206d1ea82c07cb072f8e6fd9a0fc
2026-08-07 02:16:04.425 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/14320 (bundle 3/27569, 8KB, 1.94%) checksum c225a887fbb2067ad924c639d544c43a196c4755
2026-08-07 02:16:04.425 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/14316_vm (bundle 3/27626, 8KB, 1.97%) checksum 25f902edf91dcdf0436c6a99749a7a6cad95b772
2026-08-07 02:16:04.425 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/14316_fsm (bundle 3/27669, 24KB, 2.05%) checksum db6e362ba69966081bb2efe276f0b910ac800763
2026-08-07 02:16:04.425 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/14316 (bundle 3/27835, 64KB, 2.25%) checksum da6433fc2d12dba8210ae6804dcba1b604061d48
2026-08-07 02:16:04.425 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/1259_vm (bundle 3/44202, 8KB, 2.28%) checksum fc4f1043b61b6dfc3f5dac1927291dccf803940b
2026-08-07 02:16:04.425 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/1259_fsm (bundle 3/44247, 24KB, 2.36%) checksum 38225fc4b4189cc8c421f2b953913d0276608c8c
2026-08-07 02:16:04.425 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/1255_vm (bundle 3/44429, 8KB, 2.38%) checksum 4af2989b26b16c53e6f683833acaf6855faf53dc
2026-08-07 02:16:04.425 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/1255_fsm (bundle 3/44474, 24KB, 2.46%) checksum 9c8791977ad12fede6ef264854a71b76c0a15441
2026-08-07 02:16:04.425 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/1255 (bundle 3/44792, 792KB, 5.03%) checksum 3b0a129671228c9468c38caa123de3725595677f
2026-08-07 02:16:04.425 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/1249_vm (bundle 3/140195, 8KB, 5.06%) checksum 1844ecbfa8174095af5a07828c6a8776c8418c5e
2026-08-07 02:16:04.425 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/1249_fsm (bundle 3/140240, 24KB, 5.14%) checksum cb6b2bbc4f257a9ec0362562e182f6100a227859
2026-08-07 02:16:04.425 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/1249 (bundle 3/140460, 440KB, 6.57%) checksum 15aaabec98ce35924f0175ba7d029ccfabcf7dd0
2026-08-07 02:16:04.425 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/1247_vm (bundle 3/170450, 8KB, 6.59%) checksum edba574c7357baeba4327e2ff0855d255257ee7b
2026-08-07 02:16:04.425 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/1247_fsm (bundle 3/170495, 24KB, 6.67%) checksum fe238cbc5fc0d1e0c1b1664d0daa1925a664269f
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/1247 (bundle 3/170674, 120KB, 7.06%) checksum d85bf2311eb3dbd4aef995d2a259a21aa201a97b
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/113 (bundle 3/181628, 8KB, 7.08%) checksum 1cd643347b87a472ff001ae124e4b532ce998d2f
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/112 (bundle 3/181685, 8KB, 7.11%) checksum 2cbd5cf8fb22ef627eb539776c5ec7457bdb2890
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/pg_multixact/offsets/0000 (bundle 3/181742, 8KB, 7.14%) checksum 0631457264ff7f8d5fb1edc2c0211992a67c73e6
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/global/2677 (bundle 3/181760, 16KB, 7.19%) checksum 7b27b0bb10f00335b8cf51b784bfb424e32baaf0
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/global/2676 (bundle 3/182013, 16KB, 7.24%) checksum 83bf4b67325f366d8fe544a66bdce0722342dd45
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/global/1260_vm (bundle 3/182428, 8KB, 7.27%) checksum 9971f513474a0ad735ffb90690b1ec781dea0660
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/global/1260 (bundle 3/182465, 8KB, 7.29%) checksum fc47b1ad728b5866e3ebd7063cb8bf208c021a76
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/pg_filenode.map (bundle 3/183197, 524B, 7.29%) checksum bbceb133f7ed635fbff25a30c6d029f9c1b5f9f4
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/PG_VERSION (bundle 3/183279, 3B, 7.29%) checksum ad48103e4fc71796e9708cafc43adeed0d1076b7
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/pg_xact/0000 (bundle 3/183291, 8KB, 7.32%) checksum 69478ab678fd7e5be4ca9cb690c2ca63a274fdf9
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/global/1262 (bundle 3/183313, 8KB, 7.35%) checksum 85e3b2fcfca573faf720b1cb74c694aab89ace30
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/828 (bundle 3/183532, 8KB, 7.37%) checksum 5c4044dece99f9027030f9147ddba5340bb797e6
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/827 (bundle 3/183589, 8KB, 7.40%) checksum adaf0c66788029fc0ac37b43ba0f3176de35333a
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/549 (bundle 3/183646, 8KB, 7.42%) checksum e4cadbd4a1f02e841d136f2dad0db6f4058c076a
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/548 (bundle 3/183703, 8KB, 7.45%) checksum c591df1ea183c5f88fb2e93654590479134e177b
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/175 (bundle 3/183760, 8KB, 7.48%) checksum 2ad46901009ccd70f080489608ac4202c701d7da
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/174 (bundle 3/183817, 8KB, 7.50%) checksum fca40eb07f5f1ef5b49a2e3f6e3e772c9d643322
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/113 (bundle 3/183874, 8KB, 7.53%) checksum de0989473157b787bbc4302e563ed2d9899b065c
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/112 (bundle 3/183931, 8KB, 7.55%) checksum f2301824af7f5f8327b55cf48472db6a4fa61fcc
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/1247_fsm (bundle 3/183988, 24KB, 7.63%) checksum f821056d44de58cc55e06b7250981fb931f50de1
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/1247 (bundle 3/184073, 120KB, 8.02%) checksum 1a4f7caaee02b8fa189ff9e2eaa5481af7ac8356
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/1247_vm (bundle 3/195027, 8KB, 8.05%) checksum 14d4439fbccc2e2ca094954785718585641a1b15
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/1249_vm (bundle 3/195064, 8KB, 8.07%) checksum 85e8b59c10304ec0b79f339829ccf8f0fe5300da
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/1249_fsm (bundle 3/195101, 24KB, 8.15%) checksum 3ef731accbf9ca04702990de3d6ff1271f16eb9e
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/1249 (bundle 3/195186, 440KB, 9.58%) checksum 97e0d56fd1ab86855874b497ed422e57baa8baed
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/1255 (bundle 3/225147, 792KB, 12.15%) checksum 300ae2d81f7a51a1d632c98eb9842410bb81fd98
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/1255_vm (bundle 3/320268, 8KB, 12.18%) checksum 538243ec0c5dbf60741ead589b7ca0319bc51ea8
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/1255_fsm (bundle 3/320305, 24KB, 12.26%) checksum 3ecfa917a982119e5b9047bd07f18c69487724d1
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/1259 (bundle 3/320390, 112KB, 12.62%) checksum d50568eb6083414c775d6d59463256273aaab2ff
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/2228 (bundle 3/331131, 16KB, 12.67%) checksum 5a193888c50ca4c35369705ae9290736647dc8b0
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/2187 (bundle 3/331290, 8KB, 12.70%) checksum 3c99d19ef9dd8658c1331694e4feb4baeab89070
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/1259_vm (bundle 3/331347, 8KB, 12.72%) checksum 8f941ee840baa36dcc344def4e7f7005cb2a7cba
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/1259_fsm (bundle 3/331384, 24KB, 12.80%) checksum 84a82842edcacea439d6b76d8eccf2f2f08c3eef
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/1259 (bundle 3/331468, 112KB, 13.16%) checksum cd654cc577973d12665b5b062f499031345e7eb0
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/2601 (bundle 3/341572, 8KB, 13.19%) checksum 58635b54c571ff5660c65348af40b0c3d7947a88
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/2600_vm (bundle 3/341763, 8KB, 13.22%) checksum 87b1e7d1722cbcddd5fc54559c319f881d355d0f
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/2600_fsm (bundle 3/341800, 24KB, 13.29%) checksum 53ccb3908d5b40a4cf44621b7333d2aae35da419
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/2600 (bundle 3/341885, 16KB, 13.35%) checksum 3d109bbbe845504095174ea4a584ffc596ab3bc3
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/2579 (bundle 3/344364, 16KB, 13.40%) checksum 6278cba5cf15fa81df3420498d64630311ce7ba5
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/2337 (bundle 3/344858, 8KB, 13.42%) checksum e9b5590e70161b6cc909b83cf8735aca62ee5509
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/2601_vm (bundle 3/344915, 8KB, 13.45%) checksum d9e5d71769c4a59cb73e2ec9a51dd4400184518e
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/2601_fsm (bundle 3/344952, 24KB, 13.53%) checksum 4058e5f0abd094bdc0e948cb88a764f87a82e35e
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/2603 (bundle 3/345037, 40KB, 13.66%) checksum 4f9901d20ce8cc5226faa1949bba1c2527f0ffb0
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/2602_vm (bundle 3/351209, 8KB, 13.68%) checksum 59b5b0e3172333356e2b6a2dc7d7b9028de57a80
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/2602_fsm (bundle 3/351246, 24KB, 13.76%) checksum 8696606ddb3e915ab06aafbcb11df3916ff58211
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/2602 (bundle 3/351331, 56KB, 13.94%) checksum b4915722853e963a509c4cee1337d63a4e177cfb
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/2605_vm (bundle 3/359394, 8KB, 13.97%) checksum 8298a1f0f6d9ec4b8ad07ea2e6cf37a6b0924b02
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/2605_fsm (bundle 3/359431, 24KB, 14.05%) checksum 30fdc6620d0f09f2335a0124a5e6b3eea39af0d1
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/2605 (bundle 3/359516, 16KB, 14.10%) checksum 7065396f2fcdba49d7f72205f0309b51f7977c2a
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/2603_vm (bundle 3/361955, 8KB, 14.13%) checksum bb1557243391f17bc9850fb434e86b22c01bcb1f
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/2603_fsm (bundle 3/361992, 24KB, 14.20%) checksum 830e685d53687053b5d503ef05ddb02e5fde6d3c
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/2607 (bundle 3/362077, 16KB, 14.26%) checksum 477c1a3eccef67b78559be92cb8041e6dcd93c44
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/2606_vm (bundle 3/364036, 8KB, 14.28%) checksum d3873b9f43ebff3f9933d7a986324db97ff6822f
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/2606_fsm (bundle 3/364073, 24KB, 14.36%) checksum c77ffefd86f69093318ff0e5b714c7dda0a8c412
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/2606 (bundle 3/364158, 24KB, 14.44%) checksum adaa633f92f4b7511ae07573e143a0231752c091
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/2607_vm (bundle 3/368022, 8KB, 14.46%) checksum 4f6946747e0f869213e0af3b91c0b9abd0f63c4e
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/2607_fsm (bundle 3/368059, 24KB, 14.54%) checksum 88756a0849f366f3d02b7489cb79cae8ba1221ef
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/2608_vm (bundle 3/368144, 8KB, 14.57%) checksum ccc3e83d910813c0f9c7949ced01b08c90544c6b
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/2608_fsm (bundle 3/368181, 24KB, 14.64%) checksum 3fb5bf3139d7672f585d315962a3d1930a4236cf
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/2608 (bundle 3/368266, 104KB, 14.98%) checksum 2174276fcadeac9cf007e92df17f719c8428faeb
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/global/2671 (bundle 3/380272, 16KB, 15.03%) checksum cc90b6f82623aab6391f2081480b5142503fab5a
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/2609_vm (bundle 3/380438, 8KB, 15.06%) checksum 3f5e407f378936c20dad6b830059f26234e145cb
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/2609_fsm (bundle 3/380475, 24KB, 15.14%) checksum a3863ee67b8ec8e1dfd673e2caa3456fedac5d0c
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/2609 (bundle 3/380560, 352KB, 16.28%) checksum e6453d2972c38928cbd362f66b7848e6b0f5f193
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/2612 (bundle 3/454415, 8KB, 16.31%) checksum 3084af24899976ef7a876c6f7b981d4fd0fd2157
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/2610_vm (bundle 3/454573, 8KB, 16.33%) checksum fa965508531da6033c73faff7664bbceaf65fbd0
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/2610_fsm (bundle 3/454610, 24KB, 16.41%) checksum 19f27ea9cb0f01c69d76d7c42db2d833c0601162
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/2610 (bundle 3/454695, 32KB, 16.51%) checksum 3a4b739385d03058c24239f8943f0ce464feebe2
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/2616 (bundle 3/457810, 24KB, 16.59%) checksum f8854ae34c36f930edcd1f08cb85906413086b8a
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/2615_vm (bundle 3/460640, 8KB, 16.62%) checksum e629dad183cf63b5407bd129ad9e84ed6abc886a
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/2615_fsm (bundle 3/460677, 24KB, 16.70%) checksum f009ff712efbb96bc4da8bb3e16cc2ca342bed16
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/2615 (bundle 3/460762, 8KB, 16.72%) checksum ff71d430d355d216f4dea9aacf1ef2ec1cd81be8
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/2612_vm (bundle 3/460975, 8KB, 16.75%) checksum a493de855f187b98e018ef3cbfa220ad35957871
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/2612_fsm (bundle 3/461012, 24KB, 16.83%) checksum 685c91b09e39a9a93c45c2470a14f35aa4ac7fd8
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/2616_vm (bundle 3/461097, 8KB, 16.85%) checksum d3232a5b7049100d06a84515500ee344fa98ff01
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/2616_fsm (bundle 3/461134, 24KB, 16.93%) checksum dcbb6b5b3cb8e52cf3694050e63f7075fd1db9c8
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/2617 (bundle 3/461219, 112KB, 17.29%) checksum 26f95339033fdb4cd958aed5331ff76599adb9d1
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/2617_vm (bundle 3/473430, 8KB, 17.32%) checksum 3e7d5ddbfb369a3d640b01ab3651d6cb570549e4
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/2617_fsm (bundle 3/473467, 24KB, 17.40%) checksum f2efe38aafd1984dd6b771a30aed410d2fa1fc83
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/2618_vm (bundle 3/473552, 8KB, 17.42%) checksum 003f9e09580d8277bace421dc9101acc9412b258
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/2618_fsm (bundle 3/473589, 24KB, 17.50%) checksum 6c856993d9e013e731496d283b8f28bc420c89d5
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/2618 (bundle 3/473674, 112KB, 17.87%) checksum b35e2096bd64a48c539e5555f964b1f5d43c3a2f
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/2619 (bundle 3/510941, 160KB, 18.38%) checksum 8f2c387b98fa790d4f61ba26c541191e481a24c3
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/2619_fsm (bundle 3/561088, 24KB, 18.46%) checksum 2657ac6a662259c67ad960dab05146975d1db725
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/2619_vm (bundle 3/561173, 8KB, 18.49%) checksum 93c65ac14627e7a524a7b47e61f7a96ebb1c278a
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/2619_fsm (bundle 3/561218, 24KB, 18.57%) checksum 25a2c5852f13ec9319c16b691231cdb7d5f0118f
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/2619 (bundle 3/561445, 216KB, 19.27%) checksum 513956b4eac9e3fe9b7367ef5a9c384963b46353
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/2652 (bundle 3/613186, 16KB, 19.32%) checksum 7e7a933c33ad49977ec30a3cb6099630321ef70d
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/2651 (bundle 3/613357, 16KB, 19.37%) checksum 51f3e8367fcf57d6be3d0369f7232db6676dcee7
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/2650 (bundle 3/613547, 16KB, 19.42%) checksum 8b4d5d0197f28f8395e0b99cbcd8c1f7ca978b64
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/2619_vm (bundle 3/614811, 8KB, 19.45%) checksum cf720f7ccef38a8aed3a879b3646a594dbeccddd
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/2654 (bundle 3/614848, 48KB, 19.61%) checksum 8e73e9610247d6993752bf43c9bff286de8f3d33
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/2653 (bundle 3/620373, 48KB, 19.76%) checksum 67af1a765e60300c666d2ea0962f98eeedb1c42f
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/2657 (bundle 3/625495, 8KB, 19.79%) checksum 915c3f12c0548a8190d73a9b11d678611cabf48e
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/2656 (bundle 3/625552, 8KB, 19.81%) checksum 69bfc00bfa0dc2e32e7f9560210030e50cca72d4
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/2655 (bundle 3/625609, 40KB, 19.94%) checksum f8b48208a5d8cd67c94dd38520704bf35ab1269e
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/2658 (bundle 3/629748, 120KB, 20.33%) checksum 0948a70851139acad5fadffac0470db53cf3cfb9
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/2661 (bundle 3/658997, 16KB, 20.38%) checksum 54f4e6000d8691769cbc26ce3772eae51bcdf1fe
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/2660 (bundle 3/660679, 16KB, 20.44%) checksum 77b94b0f67e7036895d60569ea647910369c7ed8
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/2659 (bundle 3/662317, 88KB, 20.72%) checksum 7474946f079c0dffd83a32faf4473c495d00f01a
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/2665 (bundle 3/678151, 16KB, 20.77%) checksum 57b320b69c5527fdd6d769d7e865cb33831134c9
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/2664 (bundle 3/680184, 16KB, 20.83%) checksum dd7fdca78294fb6befc92ba8c37437c0cb4d0585
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/2663 (bundle 3/681981, 40KB, 20.96%) checksum 82b0e9e2f255fbfbc5fbb0386f95ecbfabf13418
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/2662 (bundle 3/687477, 32KB, 21.06%) checksum 1feee4906a938a5ac1efecaa8b540200acb7a503
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/2670 (bundle 3/690496, 16KB, 21.11%) checksum 276b0ec7aacd2539de40267e4f1e7fc2fbbe2bd8
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/2669 (bundle 3/691521, 16KB, 21.16%) checksum f6886d0c18e375a74cf84ba05cbf1d9a08bbe31b
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/2668 (bundle 3/692870, 16KB, 21.22%) checksum 07d4bfb7414c35cd3430af4e55010bbf401c1915
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/2667 (bundle 3/694062, 16KB, 21.27%) checksum 9256d864c0b5f5f68fb1d6a665e6d12e0a7a2a43
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/2666 (bundle 3/694880, 16KB, 21.32%) checksum 31dd546a7c12d7f2dcf791cc60a30c499b74a8ee
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/2673 (bundle 3/695388, 80KB, 21.58%) checksum 091dc44d2c3545c2589c5ab56b466dbef5c0be0a
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/2674 (bundle 3/704841, 64KB, 21.79%) checksum 09a9debe6fd1465d85aff06b3372b392618a2844
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/2680 (bundle 3/711727, 8KB, 21.81%) checksum 04fd9690b146b3bfa4cf83cf2949cf76e54bd31e
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/2679 (bundle 3/711784, 16KB, 21.87%) checksum 4d934763dbe193cca1e6629b98f73249979b2a02
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/2678 (bundle 3/713145, 16KB, 21.92%) checksum 3050dde95682239fd4405779915b5ad1cd662ed7
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/2675 (bundle 3/714317, 208KB, 22.59%) checksum 8e357571c8366d088cc8ede4c735d530cdf491a2
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/2686 (bundle 3/742712, 16KB, 22.64%) checksum 104bffab028f944699d03645eaf4b576eb017721
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/2685 (bundle 3/744595, 16KB, 22.70%) checksum 3e84c756ea94c88f941adf30584ca720fdbdd7cd
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/2684 (bundle 3/744742, 16KB, 22.75%) checksum 6077394082aa598477734d7188785a6dc8ca11b0
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/2683 (bundle 3/744930, 8KB, 22.77%) checksum c64584f331ed1eae9193d7d4eddda2a2062af1c1
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/2682 (bundle 3/744987, 16KB, 22.83%) checksum e2a3a5bcd2f297de6fda4724fcc13ed74906ea2a
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/2681 (bundle 3/745134, 16KB, 22.88%) checksum a8bfffd67cc638be28a2973c58998a8c93c123cf
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/2688 (bundle 3/745297, 40KB, 23.01%) checksum c23055efd2f27ed025cb0dd9bf0bab8ba562fecc
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/2687 (bundle 3/749702, 16KB, 23.06%) checksum 62af84dc4642d4d95b72b76a1ad4137e589918e9
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/2689 (bundle 3/750999, 48KB, 23.22%) checksum c14bf1f329cfd93049008713c4b69f37b313ddf4
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/2690 (bundle 3/755999, 96KB, 23.53%) checksum 1d4bc7434efbc9bfd6ea261d53221771adc9cffb
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/2692 (bundle 3/770982, 16KB, 23.58%) checksum 73100742d65997c0cdd615eec0dd3f7c2af880bb
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/2691 (bundle 3/772024, 256KB, 24.41%) checksum a2e358f34c68afa8733500d5305513ae2bcb09dd
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/2699 (bundle 3/816142, 8KB, 24.44%) checksum 3ca172a51cf6e9519f3d34d5bb3d8df75f834b43
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/2696 (bundle 3/816199, 32KB, 24.54%) checksum fd610b29d7f537517447b54e0d7985d422e91880
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/2693 (bundle 3/819145, 16KB, 24.59%) checksum 65deee307940d7ba85f9f7436c01d5f7e30790bb
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/2696 (bundle 3/820273, 40KB, 24.72%) checksum 0f219b364f31b6e7c58d2d8aa7823f31c7c870f0
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/global/2672 (bundle 3/823180, 16KB, 24.77%) checksum 0a1dfce9bb23508ee1805d8760ec2e7aa1140cbc
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/2703 (bundle 3/823321, 32KB, 24.88%) checksum 2fc8d90a60679db03c3533e1c6c0082001f41740
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/2702 (bundle 3/827290, 8KB, 24.90%) checksum 670c0dda45d23704ac05738572eda2d966817b39
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/2701 (bundle 3/827347, 8KB, 24.93%) checksum 96543b48f4a39d63a30c725169b97007ba548f8b
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/2754 (bundle 3/827404, 16KB, 24.98%) checksum b0ba0ddc175e838be94b2494598bd0737266b769
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/2753_vm (bundle 3/829006, 8KB, 25.01%) checksum d1d1eb8fd604e1e3587bc8ad6432781e81295db6
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/2753_fsm (bundle 3/829043, 24KB, 25.09%) checksum ede6e1ea3cf596078f91951ec749bb91262467c7
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/2753 (bundle 3/829128, 16KB, 25.14%) checksum be1175a284ea6bee23c756562f676fd8075c336c
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/2704 (bundle 3/830930, 40KB, 25.27%) checksum eb4fd3e3c7e1c114aa0e581c95a0f040428d3867
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/2756 (bundle 3/838071, 40KB, 25.40%) checksum 21226558cee23ab125586f064f9263a6cb2d7518
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/2755 (bundle 3/842581, 16KB, 25.45%) checksum f203b28c2d256b99449ff12ab996d4ac3ab80a42
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/2836_vm (bundle 3/843766, 8KB, 25.48%) checksum a81d4f26d17837ea754e7a73d0782f00389efc32
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/2836_fsm (bundle 3/843803, 24KB, 25.55%) checksum a278230e6bec42e71eee43908e1dd8e2a6f76b46
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/2836 (bundle 3/843888, 8KB, 25.58%) checksum 105649ac4397b75a913d005c9df953bfcc239b61
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/2835 (bundle 3/847820, 8KB, 25.61%) checksum e2268c1ab70362ff49f6709045042d79fe7423f6
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/2833 (bundle 3/847877, 8KB, 25.63%) checksum 3592b783cfb9e08942968ae87f26cd8f9fcf2b9e
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/2831 (bundle 3/847934, 8KB, 25.66%) checksum 2271b207b74ac00eaff89863b3d2e7d4726a7010
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/2757 (bundle 3/847991, 32KB, 25.76%) checksum 3e1f38052e5d3fff868df8c88356f17392cdd28f
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/2837 (bundle 3/851557, 16KB, 25.81%) checksum 838233e1399a57356cf3b1866793b3ab984b9e30
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/2839 (bundle 3/851692, 16KB, 25.87%) checksum c22ebf092676d26ee6d5c61361bcd43a38a9d3a5
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/2838_vm (bundle 3/853647, 8KB, 25.89%) checksum 52929002a18615b0d7656aa25d0b20ada5291c58
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/2838_fsm (bundle 3/853684, 24KB, 25.97%) checksum 8ec08243c99a09b1ceefe76f60d23aa2b6ff93cb
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/2838 (bundle 3/853769, 504KB, 27.61%) checksum f3091cc3bf389452ea6d3385bc9bf34320410dbc
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/2840 (bundle 3/1048654, 24KB, 27.68%) checksum 232cf574b39b7397bd63d84252c90ad219c06a2d
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/2840 (bundle 3/1065211, 32KB, 27.79%) checksum a0378faffb176f18c3f9d4ac002285a645930175
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/2996 (bundle 3/1081923, 8KB, 27.81%) checksum 832f9dbc4ac8ef302a26f85b0cd72b66f4f9920c
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/2841 (bundle 3/1081980, 16KB, 27.87%) checksum 6d61317898b8b11294cc8de38817e476a907c0df
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/2840_vm (bundle 3/1082196, 8KB, 27.89%) checksum 72785981b9a8fa469349eacede5f3785ca96b9fd
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/2840_fsm (bundle 3/1082233, 24KB, 27.97%) checksum eed88b6a9a3c2ee029a3a2554e8655450a761581
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/2841 (bundle 3/1082318, 16KB, 28.02%) checksum be8ca2332a94f65b79e1ff53b5c6e8d3105d8916
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/2840_vm (bundle 3/1082576, 8KB, 28.05%) checksum 4ef99d3edccc83982789f34485ccda749bf2e85a
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/2840_fsm (bundle 3/1082613, 24KB, 28.12%) checksum c7a32d7deb6da0c201c909e25d16c93675b6b7f1
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/3081 (bundle 3/1082775, 16KB, 28.18%) checksum d0fb2d2cc1a10dd3d309a967a9a4e5a5faaf0ddf
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/3080 (bundle 3/1082898, 16KB, 28.23%) checksum 72525552b18424126f86e0125a3a61f6ad964b83
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/3079_vm (bundle 3/1083020, 8KB, 28.25%) checksum 993d820ea9cd8aef44170c2ff4bf86d7035e62c3
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/3079_fsm (bundle 3/1083057, 24KB, 28.33%) checksum 795967d7ca61c1193fc3be46c981ae14e8cab5f9
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/3079 (bundle 3/1083142, 8KB, 28.36%) checksum b3298f9ab045835fc317d499e7d09a400fa3eb18
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/3119 (bundle 3/1083227, 8KB, 28.38%) checksum 2567d3edc70d25f093f57503a310dc29750e7b58
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/3085 (bundle 3/1083284, 56KB, 28.57%) checksum 321609bcc50132ff911f036e7d883b8184eed927
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/3164 (bundle 3/1090055, 104KB, 28.90%) checksum 2c9feda3f15313ddcb8a73682535084ce7991379
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/3394 (bundle 3/1106602, 24KB, 28.98%) checksum e395f792f2e0fdf6636be838daa93bbd336c7361
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/3380 (bundle 3/1108576, 8KB, 29.01%) checksum 872b0db4f080a6e1befbfcbb568f815a4f8c4c36
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/3379 (bundle 3/1108633, 8KB, 29.03%) checksum f31863f3c31ef74e9148e241d5afc5573f049669
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/3351 (bundle 3/1108690, 8KB, 29.06%) checksum 331fcf5eec2150f31e3265928896b5a9cff47d1b
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/3258 (bundle 3/1108747, 8KB, 29.09%) checksum 24ad659e5ac0f258fba6d23d839c9e8347bf1663
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/3257 (bundle 3/1108804, 8KB, 29.11%) checksum ac76e181285cbc8b8bd545ecfef507203f0e826e
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/3455 (bundle 3/1108861, 16KB, 29.16%) checksum cd47e684d5807401972fb38ff126f3a407e4b4f2
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/3440 (bundle 3/1111162, 8KB, 29.19%) checksum ef054ae87a9d180f5df2fc733e51220654ffc4dd
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/3433 (bundle 3/1111219, 8KB, 29.22%) checksum 3397cb078fdac94cd313539934a2cf50eeeb4365
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/3431 (bundle 3/1111276, 8KB, 29.24%) checksum 3681c257ec82b1d013a09a2c1716b0866ef3e270
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/3395 (bundle 3/1111333, 16KB, 29.29%) checksum fd87cc508a06eadc6bae11dfbf02ba6909abe3e5
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/3394_vm (bundle 3/1113053, 8KB, 29.32%) checksum 0c0cee8791bad768410f967d6ff33ae72927b79d
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/3394_fsm (bundle 3/1113090, 24KB, 29.40%) checksum 8fc2c292aa1ecb08051d29a9ad9e10a333013aa0
2026-08-07 02:16:04.426 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/3456 (bundle 3/1113175, 248KB, 30.20%) checksum 958452b70e381f5b56527a2d0ede0ad03f128c2f
2026-08-07 02:16:04.427 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/3541 (bundle 3/1145703, 8KB, 30.23%) checksum 2f25d67c375f19a0f04f0a530580a72109de447d
2026-08-07 02:16:04.427 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/3534 (bundle 3/1145889, 8KB, 30.25%) checksum c15a68857fc442114dd98bd10618407c97f3c8a3
2026-08-07 02:16:04.427 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/3503 (bundle 3/1145945, 8KB, 30.28%) checksum 172831d96d9c9b4777c55cc9ae477af6bac25b24
2026-08-07 02:16:04.427 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/3502 (bundle 3/1146002, 8KB, 30.31%) checksum 7e2b58144742bde289892794543284ad739bcc58
2026-08-07 02:16:04.427 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/3468 (bundle 3/1146059, 8KB, 30.33%) checksum 13f4299de92a655f71001f99d725813ca226728a
2026-08-07 02:16:04.427 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/3467 (bundle 3/1146116, 8KB, 30.36%) checksum 857946e5012d9a43e8b24208c9cc5ad86d60ecf8
2026-08-07 02:16:04.427 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/3456_vm (bundle 3/1146173, 8KB, 30.38%) checksum f70e06fa735eac040a5c8678fc0981657aebbe27
2026-08-07 02:16:04.427 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/3456_fsm (bundle 3/1146210, 24KB, 30.46%) checksum 03c3db3dbf180660665ca0652fa38091e372a18b
2026-08-07 02:16:04.427 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/3599 (bundle 3/1146295, 8KB, 30.49%) checksum 45d1e702791796a72148d0c338c6292529e6ad9a
2026-08-07 02:16:04.427 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/3597 (bundle 3/1146352, 8KB, 30.51%) checksum ea3b50eca48956e82b2d4ab79af6d8d5946a3d25
2026-08-07 02:16:04.427 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/3575 (bundle 3/1146409, 8KB, 30.54%) checksum f89ac3706f11590457caa02d143f63d5aa9a2c07
2026-08-07 02:16:04.427 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/3574 (bundle 3/1146466, 8KB, 30.57%) checksum 0c3daab1c5e2f23370cf9d38227ee1809a5280db
2026-08-07 02:16:04.427 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/3542 (bundle 3/1146523, 16KB, 30.62%) checksum a88cf71707bb5d3dc0b20cd253bda87822a1e128
2026-08-07 02:16:04.427 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/3541_vm (bundle 3/1146682, 8KB, 30.64%) checksum 79e59ba12874800b0599271b59015858b61bc279
2026-08-07 02:16:04.427 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/3541_fsm (bundle 3/1146719, 24KB, 30.72%) checksum 8d72d8c810185269f01e0e3de2d0b929d818fed9
2026-08-07 02:16:04.427 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/3601_vm (bundle 3/1146803, 8KB, 30.75%) checksum d27698ffc705bd3ea62801c2197b0075930acccc
2026-08-07 02:16:04.427 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/3601_fsm (bundle 3/1146840, 24KB, 30.83%) checksum 5b5cf827efc4a6695a03973df2160e7260118afd
2026-08-07 02:16:04.427 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/3601 (bundle 3/1146925, 8KB, 30.85%) checksum 1d3d279b394e6931506c91d563715ef1eb155ca2
2026-08-07 02:16:04.427 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/3600_vm (bundle 3/1147012, 8KB, 30.88%) checksum 007c9776d696d11b61201b7eb777416349c1ec1f
2026-08-07 02:16:04.427 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/3600_fsm (bundle 3/1147049, 24KB, 30.96%) checksum 79be07047060a764e97d6eb5b00daeedb69a2783
2026-08-07 02:16:04.427 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/3600 (bundle 3/1147134, 8KB, 30.98%) checksum 1cdcf085c6730035651e26cd15c20cff072881e1
2026-08-07 02:16:04.427 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/3603 (bundle 3/1147983, 24KB, 31.06%) checksum 2dbb4d1d15880251a1abee02093a329052325b96
2026-08-07 02:16:04.427 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/3602_vm (bundle 3/1150462, 8KB, 31.09%) checksum 94d65ae55b736c2aae865419ccb789e5ebf9877c
2026-08-07 02:16:04.427 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/3602_fsm (bundle 3/1150499, 24KB, 31.16%) checksum ea9544fc21e026d067cae621b0cc502dbb46499f
2026-08-07 02:16:04.427 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/3602 (bundle 3/1150584, 8KB, 31.19%) checksum 97586972411b908bb227b2a74f370dbca6c631af
2026-08-07 02:16:04.428 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/3607 (bundle 3/1151157, 16KB, 31.24%) checksum 5cc72901468e44dafcba8bb166e322d36f340b8a
2026-08-07 02:16:04.428 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/3606 (bundle 3/1151279, 16KB, 31.29%) checksum 5b40c7d76e43de10b3880c4b9fbb55719c5b5181
2026-08-07 02:16:04.428 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/3605 (bundle 3/1151411, 16KB, 31.35%) checksum b665704d00020b487752cd4444fb01be3b9506bd
2026-08-07 02:16:04.428 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/3604 (bundle 3/1151757, 16KB, 31.40%) checksum c8f9e099a1dc6d6a38543c32811aacc8ba3db50b
2026-08-07 02:16:04.428 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/3603_vm (bundle 3/1152258, 8KB, 31.42%) checksum 798e0e8a444806b829e694c8ffafcab876b687f7
2026-08-07 02:16:04.428 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/3603_fsm (bundle 3/1152295, 24KB, 31.50%) checksum f270432a5413dc0e7cfd4dc82b75babf37c334e5
2026-08-07 02:16:04.428 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/3764 (bundle 3/1152380, 8KB, 31.53%) checksum f2d9a4bab48fc5336f572d5724cab0363f09c5f0
2026-08-07 02:16:04.428 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/3712 (bundle 3/1152567, 16KB, 31.58%) checksum a5eb42e2ffb25b54cd7e5f704b45b60d3021ec74
2026-08-07 02:16:04.428 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/3609 (bundle 3/1152910, 32KB, 31.68%) checksum 6c60b1004e13b1823b60f29a0d7980d5a73a647d
2026-08-07 02:16:04.428 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/3608 (bundle 3/1156324, 16KB, 31.74%) checksum e4e7d059bbf50f5d436da270d06b4d6a473abc60
2026-08-07 02:16:04.428 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/4146 (bundle 3/1156806, 8KB, 31.76%) checksum 26626abca1aaa951fc9b26f4641195a658f5e258
2026-08-07 02:16:04.428 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/4144 (bundle 3/1156863, 8KB, 31.79%) checksum 4cb9b8cd3ab0d206c292aab5bc0bdad21558b81d
2026-08-07 02:16:04.428 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/3997 (bundle 3/1156920, 8KB, 31.81%) checksum 7794764b0893fdbc7a9ca2c8636a6d0db7836feb
2026-08-07 02:16:04.428 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/3767 (bundle 3/1156977, 16KB, 31.87%) checksum 460336af85f34961bfb4efa8c902b88e6f4a3f22
2026-08-07 02:16:04.428 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/3766 (bundle 3/1157129, 16KB, 31.92%) checksum f7a9d7e9fd960ad57edb32fe65d84c5d111494ea
2026-08-07 02:16:04.428 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/3764_vm (bundle 3/1157322, 8KB, 31.94%) checksum 493030a0dc2b655e259b63e832b13a596d1f04b3
2026-08-07 02:16:04.428 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/3764_fsm (bundle 3/1157359, 24KB, 32.02%) checksum cfb4e74f3c373c3d1a17f2575f4bc0ddbc014748
2026-08-07 02:16:04.428 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/4168 (bundle 3/1157444, 8KB, 32.05%) checksum 595771e14550e016f85ad811443e0ea6dab16f8b
2026-08-07 02:16:04.428 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/4166 (bundle 3/1157501, 8KB, 32.07%) checksum 3b34c0be12591312f7fe68260414a8f9d8b6428e
2026-08-07 02:16:04.428 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/4164 (bundle 3/1157558, 8KB, 32.10%) checksum f03432037790894452cd3da764d550f715621d5c
2026-08-07 02:16:04.428 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/4160 (bundle 3/1157615, 8KB, 32.12%) checksum 213353747acd52e79f3bb40cd5b09303cf99df60
2026-08-07 02:16:04.428 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/4158 (bundle 3/1157672, 8KB, 32.15%) checksum dfb231e27b84527b3f7769e73bf7b8d50af209bc
2026-08-07 02:16:04.428 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/4156 (bundle 3/1157729, 8KB, 32.18%) checksum 80cafa9444d1e35a11673f1eaacff13d7d49870d
2026-08-07 02:16:04.428 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/4154 (bundle 3/1157786, 8KB, 32.20%) checksum ca658fc0f3e6742fcb84da303b3cbd49a807ef4b
2026-08-07 02:16:04.428 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/4152 (bundle 3/1157843, 8KB, 32.23%) checksum 2a3054eabbcb9674a1ce0947faae159e4ce8bfc9
2026-08-07 02:16:04.428 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/4150 (bundle 3/1157900, 8KB, 32.25%) checksum 0df0502f1d340b8c27fd1134ca45fef61ef7067e
2026-08-07 02:16:04.428 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/4148 (bundle 3/1157957, 8KB, 32.28%) checksum ea847f2e4c9b17607b71270066b3bc50da9c68dd
2026-08-07 02:16:04.428 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/6117 (bundle 3/1158014, 8KB, 32.31%) checksum 56b6d8e250282c85146eb0b3bf3679e5f28bdf37
2026-08-07 02:16:04.428 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/6116 (bundle 3/1158071, 8KB, 32.33%) checksum 53ffdec6ded0349711a517603f03ac4d5ce3c4dc
2026-08-07 02:16:04.428 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/6113 (bundle 3/1158128, 8KB, 32.36%) checksum 9076e76e861f367b9beea69c4bfd4ed56b2cd49f
2026-08-07 02:16:04.428 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/6112 (bundle 3/1158185, 8KB, 32.38%) checksum 32c5d2cf041f21fd4ff841dc68f71a05d76a3027
2026-08-07 02:16:04.428 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/6111 (bundle 3/1158242, 8KB, 32.41%) checksum 9f5e865d7088a9c733fb42186fbd4b0a34403b0d
2026-08-07 02:16:04.428 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/6110 (bundle 3/1158299, 8KB, 32.44%) checksum f10feebf476dd48a810b47a6e4c3d8ce9adbe36f
2026-08-07 02:16:04.428 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/5002 (bundle 3/1158356, 8KB, 32.46%) checksum a77cdd4b2afa2078f0937e37526cafcd60f10de2
2026-08-07 02:16:04.428 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/4174 (bundle 3/1158413, 8KB, 32.49%) checksum b84376cc06b9570f364571ac9d5d7f255095f076
2026-08-07 02:16:04.428 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/4172 (bundle 3/1158470, 8KB, 32.51%) checksum 5389704fd04bc8df738c2597d4b06dc7768f1076
2026-08-07 02:16:04.428 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/4170 (bundle 3/1158527, 8KB, 32.54%) checksum ad827033e035b0ededc35e0f40aa94889ca32210
2026-08-07 02:16:04.428 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/6239 (bundle 3/1158584, 8KB, 32.57%) checksum e922cc014d424cff5ee8b259db0a09089fd60286
2026-08-07 02:16:04.428 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/6238 (bundle 3/1158641, 8KB, 32.59%) checksum 16c923ae496ddd9cab89780f832f1a207d880dbd
2026-08-07 02:16:04.428 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/6229 (bundle 3/1158698, 8KB, 32.62%) checksum d13db399abb7466bc21588c0110478353b164226
2026-08-07 02:16:04.428 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/6176 (bundle 3/1158755, 8KB, 32.64%) checksum 0fe744f7fb5892e07dce460676f29764718cd3f6
2026-08-07 02:16:04.428 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/14321 (bundle 3/1158812, 8KB, 32.67%) checksum 8ad9c7d732993b60aaf49975d40959c5896702f9
2026-08-07 02:16:04.428 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/14320 (bundle 3/1159404, 8KB, 32.70%) checksum 6681d61c835fd22fcddd817c1185edc807de36b9
2026-08-07 02:16:04.428 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/14316_vm (bundle 3/1159461, 8KB, 32.72%) checksum e1cbed0d8c64f5f8d332b849e89055cfcd772d47
2026-08-07 02:16:04.428 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/14316_fsm (bundle 3/1159498, 24KB, 32.80%) checksum 64b754961ced249def3c66861b98f20a7ded3c0a
2026-08-07 02:16:04.428 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/14316 (bundle 3/1159583, 64KB, 33.01%) checksum 05f1ad5d17fc24d03e72138ea3939492ccee9d8f
2026-08-07 02:16:04.428 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/14331 (bundle 3/1175947, 8KB, 33.03%) checksum 034f173372505873b3378a78068607c116afa6df
2026-08-07 02:16:04.428 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/14330 (bundle 3/1176599, 8KB, 33.06%) checksum 702b6c9be10d512398b1eba5a899b75772292aad
2026-08-07 02:16:04.428 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/14326_vm (bundle 3/1176656, 8KB, 33.09%) checksum 52583628ee53639979480bd84cc66edbbaa218c5
2026-08-07 02:16:04.429 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/14326_fsm (bundle 3/1176693, 24KB, 33.16%) checksum 16e9c5a2f028b142fa06705e9e8886224267a0c0
2026-08-07 02:16:04.429 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/14326 (bundle 3/1176778, 8KB, 33.19%) checksum f2868554ee57d1b288db34f767362dd772ab52a8
2026-08-07 02:16:04.429 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/14325 (bundle 3/1177271, 8KB, 33.22%) checksum 5abea343dbcb35299f1121947ffbc438958c7878
2026-08-07 02:16:04.429 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/14321_vm (bundle 3/1177328, 8KB, 33.24%) checksum bf794971a63cc8533d7bdf87083e9cc28f029f5b
2026-08-07 02:16:04.429 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/14321_fsm (bundle 3/1177365, 24KB, 33.32%) checksum c2e3ec8c088c098f4e69bd780277a7edcb872b8d
2026-08-07 02:16:04.429 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/14335 (bundle 3/1177450, 8KB, 33.35%) checksum 8b21f9bc816a77306887cc02b2b4c9128f044387
2026-08-07 02:16:04.429 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/14331_vm (bundle 3/1177507, 8KB, 33.37%) checksum 12163c10f9482ebe9c15af2f4ea0b02a1cb20068
2026-08-07 02:16:04.429 P03 DETAIL: backup file 10.10.3.160:/data/pgdata/base/16385/14331_fsm (bundle 3/1177544, 24KB, 33.45%) checksum 2f5623a03960a8ea48f8dc0ee8a32a1342dc055c
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/pg_multixact/members/0000 (bundle 2/0, 8KB, 33.48%) checksum 0631457264ff7f8d5fb1edc2c0211992a67c73e6
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/global/pg_filenode.map (bundle 2/18, 524B, 33.48%) checksum 3de878cf56cdb80345e88da11f91bc6d46f9f804
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/global/6303 (bundle 2/188, 16KB, 33.53%) checksum 40a7ec4b129a28667408b36b0b4aa53a62eb81bb
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/global/6302 (bundle 2/324, 16KB, 33.58%) checksum 075daeea624bce824a5bd5767b81b445fc6b1bd6
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/global/6247 (bundle 2/454, 8KB, 33.61%) checksum 5f017037be1023abfaa751c42ee7394f87dc8f2c
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/global/6246 (bundle 2/511, 8KB, 33.63%) checksum efadeeb753810dffce4211007cf6584e6815f8f4
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/global/6245 (bundle 2/568, 8KB, 33.66%) checksum 3c79aa06a5c867b5a0f29f9077f8b95e16899d7c
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/global/6115 (bundle 2/625, 8KB, 33.68%) checksum fc22bab7ec9bcb1b2006676f1d6e31d58832e651
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/global/6114 (bundle 2/682, 8KB, 33.71%) checksum bef42d10378dbee34339f31e1dbacd52b4cc38f3
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/global/6002 (bundle 2/739, 8KB, 33.74%) checksum 1b9d0df5d6ea8d94254faf53f9419d87139d1255
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/global/6001 (bundle 2/796, 8KB, 33.76%) checksum 987cdad0b6516c189ba6cf0d13bc7991f0d2ed12
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/global/4186 (bundle 2/853, 8KB, 33.79%) checksum 3f5aabfdb8dd9f6fbf65ea63b3711a8854e8af2e
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/global/4184 (bundle 2/910, 8KB, 33.81%) checksum ee4ef0cf4e17d5693cef8b36c415c89e673e9038
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/global/4182 (bundle 2/967, 8KB, 33.84%) checksum 8f51b6c5a976541e42444b14ed63496dc55e3052
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/global/4178 (bundle 2/1024, 8KB, 33.87%) checksum f4b477d038f3e53df8e4a3c6d90fe537b895e365
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/global/4176 (bundle 2/1081, 8KB, 33.89%) checksum 7387137ba0931b4e5bcca42694dff2e72de55313
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/global/4061 (bundle 2/1138, 8KB, 33.92%) checksum 41a81f57a2ac4a06084dd3a3d163b2f2b0cdce7d
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/global/3593 (bundle 2/1195, 8KB, 33.94%) checksum fb74e6281e7474c3b10aa0475fc35fa06edd9d46
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/global/2967 (bundle 2/1252, 8KB, 33.97%) checksum f61c1d5b45bed2163c6e4fae3daecfe7fc7876d4
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/global/2965 (bundle 2/1309, 8KB, 34.00%) checksum fa86230208269e96aba82bfcd539610b9093627b
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/global/2847 (bundle 2/1366, 8KB, 34.02%) checksum 0788b1e0b34b1f7e54a9faf00c17ceada966ab53
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/global/2698 (bundle 2/1423, 16KB, 34.07%) checksum 344681079a8783e7fb5f12d89e9e7f7cde1dd2d7
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/global/2697 (bundle 2/1568, 16KB, 34.13%) checksum 354400109c38cd03322ea304d598fc26e90c79dc
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/global/2695 (bundle 2/1694, 16KB, 34.18%) checksum 76c1f452366ecdb6c6b24b0c30f2765d02377b97
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/global/2694 (bundle 2/1834, 16KB, 34.23%) checksum dfebac1669d6c6587dcb40b18e423a88ce68d1a7
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/global/2397 (bundle 2/1974, 16KB, 34.28%) checksum 9c7e0e1b66641a3d9d5102f25a3e62adaf4dc0c1
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/global/2396_vm (bundle 2/2113, 8KB, 34.31%) checksum 7799a66d240e7098e4b9b9e7b35aed529e61891f
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/global/2396_fsm (bundle 2/2150, 24KB, 34.39%) checksum 38e0cd66c205da76311f0b2777f0165c7998540f
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/global/2396 (bundle 2/2294, 8KB, 34.41%) checksum 5b2f2560135da11f4d1152b17bdc22cf5827005c
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/global/1262_vm (bundle 2/2472, 8KB, 34.44%) checksum 2e5fbc794cb6828055f7f40a91b915ae6f284161
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/global/1262_fsm (bundle 2/2509, 24KB, 34.52%) checksum eb1b332cb232ca0e6c92ced1ce929f440b9ab5cc
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/global/1261_vm (bundle 2/2656, 8KB, 34.54%) checksum b5c2a336a46c712344c9d7634d6c278dca4b249b
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/global/1261_fsm (bundle 2/2698, 24KB, 34.62%) checksum 7ca170ad9933d290cc574be1d5c5fa12220aa43f
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/global/1261 (bundle 2/2842, 8KB, 34.65%) checksum f32513682d9c3d8c2b2cbb47644e963c6e865eef
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/global/1260_fsm (bundle 2/2947, 24KB, 34.72%) checksum 30ae353450002513a0b2aa0f8cd083ae443f32bb
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/global/1233 (bundle 2/3091, 8KB, 34.75%) checksum bf1ac95e0d475d81793a40b29db0ad4ff02d8196
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/global/1232 (bundle 2/3148, 8KB, 34.78%) checksum 1e39120b1744413c9fbe94f5b5aaf4ad3a69fdb7
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/global/1213_vm (bundle 2/3205, 8KB, 34.80%) checksum b886ff0a3cd55f49853a68c405d42cb3efc2ee30
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/global/1213_fsm (bundle 2/3247, 24KB, 34.88%) checksum 8d78c6d3fb8003222325aff9cb8a04fb31d8f159
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/global/1213 (bundle 2/3391, 8KB, 34.91%) checksum 783406a0813fa5806c57345c3b2b71ac6de75f39
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/pg_filenode.map (bundle 2/3488, 524B, 34.91%) checksum bbceb133f7ed635fbff25a30c6d029f9c1b5f9f4
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/PG_VERSION (bundle 2/3570, 3B, 34.91%) checksum ad48103e4fc71796e9708cafc43adeed0d1076b7
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/828 (bundle 2/3582, 8KB, 34.93%) checksum ca3e41f9deaab54a0ba8695ea5f83afb24e50190
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/827 (bundle 2/3639, 8KB, 34.96%) checksum 762b2cc0901b8bc3641c9658533dd9bf5ad9741c
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/6239 (bundle 2/3696, 8KB, 34.99%) checksum cf98743febad323ee9eb358251fbde85853b73c3
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/6238 (bundle 2/3753, 8KB, 35.01%) checksum 1d4155d43adf6440852dfbdc4e3110923ff51b15
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/6229 (bundle 2/3810, 8KB, 35.04%) checksum 10bc529a49b124ec4e913a426f83e1afe6ea6393
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/6176 (bundle 2/3867, 8KB, 35.06%) checksum 2865ab953309091d1283f46ba2c4d01a1adff223
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/6117 (bundle 2/3924, 8KB, 35.09%) checksum 8d35ff1d1e0d927452e465970f10538004eecbac
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/6116 (bundle 2/3981, 8KB, 35.12%) checksum 30cc1d5bb98ee699a35fd66e19a6b338a60d4359
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/6113 (bundle 2/4038, 8KB, 35.14%) checksum 3cae2d582d12f92ea8e6e83d0242fe61a30d54ba
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/6112 (bundle 2/4095, 8KB, 35.17%) checksum c0e21051611315e334bd44b595865930005de8b6
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/6111 (bundle 2/4152, 8KB, 35.19%) checksum 8b95a1529616a538b8a2820ec8f2c54d2fe3ae9d
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/6110 (bundle 2/4209, 8KB, 35.22%) checksum 072b289b74c095dd9b5545467f6826e73ce58ba3
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/549 (bundle 2/4266, 8KB, 35.24%) checksum d088f7c671a94155a2be276e5386c529b53bd434
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/548 (bundle 2/4323, 8KB, 35.27%) checksum 3172aa7cf0545bd03f10147264d22193e7c435bb
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/5002 (bundle 2/4380, 8KB, 35.30%) checksum 352a0a5027c122978a09c17ee84a89630adc7a59
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/4174 (bundle 2/4437, 8KB, 35.32%) checksum 650300088fb08e9fcdd1781d3aa65a16b12e20bb
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/4172 (bundle 2/4494, 8KB, 35.35%) checksum cd7609dd6646dc26c1ed2095c66f928a1390e051
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/4170 (bundle 2/4551, 8KB, 35.37%) checksum 0a94418a34d1bf090268a3deaf6c12781c09c3a1
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/4168 (bundle 2/4608, 8KB, 35.40%) checksum 03cb3fa0c38fc5face7d6e74b2a5e2f5d45bd851
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/4166 (bundle 2/4665, 8KB, 35.43%) checksum 5b520b3a06a6642a3b4c80963ca276c7e424722f
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/4164 (bundle 2/4722, 8KB, 35.45%) checksum fbdef8e4b35a8bcd620ad0dbe024debdf9f55d02
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/4160 (bundle 2/4779, 8KB, 35.48%) checksum 6ecb32e625a0fb31ae5584567c8c4e6cc86fca6a
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/4158 (bundle 2/4836, 8KB, 35.50%) checksum 9ce1692abd77ac1be81e00ab629899039b79337a
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/4156 (bundle 2/4893, 8KB, 35.53%) checksum 8f8309f9b6e1a3827b4b6bfa8a7ea74c4a71578f
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/4154 (bundle 2/4950, 8KB, 35.56%) checksum ceaf3d70517a48c3195b33a866cae1a6ae475544
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/4152 (bundle 2/5007, 8KB, 35.58%) checksum 7fe7f9718187d20ee270a60672a057d78b8888f0
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/4150 (bundle 2/5064, 8KB, 35.61%) checksum 12928920044f2fbf053a61d94cc4997d89172649
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/4148 (bundle 2/5121, 8KB, 35.63%) checksum cd020de740bf9e3054f814eb62bd5465485168c5
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/4146 (bundle 2/5178, 8KB, 35.66%) checksum f03a29deeaac474da866bea42756776682c30d5f
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/4144 (bundle 2/5235, 8KB, 35.69%) checksum f4b593aa46ac5d1a86b9b7b3f95b303e36780832
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/3997 (bundle 2/5292, 8KB, 35.71%) checksum e5458dff91a04574b06bc35554fbd5d6a30afc6d
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/3767 (bundle 2/5349, 16KB, 35.76%) checksum ec5397a797d3049e5671796df2727ca616aa5470
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/3766 (bundle 2/5502, 16KB, 35.82%) checksum 993116fc58097648f345244b73128170ad3b529b
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/3764_vm (bundle 2/5690, 8KB, 35.84%) checksum 11ab26a6db1a2d53b5a2c38f9c3d312d8d12dc75
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/3764_fsm (bundle 2/5732, 24KB, 35.92%) checksum 101caee5f2f3a2a738b7a6672466bc62345dd962
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/3764 (bundle 2/5876, 8KB, 35.95%) checksum 03d802f9f6d5f18ec952a1f884535d45f907ffb4
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/3712 (bundle 2/6058, 16KB, 36.00%) checksum 8739d1e86c63b9664c30def1716d0ab0b68986a4
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/3609 (bundle 2/6400, 32KB, 36.10%) checksum a52aeddacb08762d10c1605df71172927de45280
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/3608 (bundle 2/9807, 16KB, 36.15%) checksum efe23d086afd4e0426b6c240ec7690d712ab3b02
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/3607 (bundle 2/10288, 16KB, 36.21%) checksum b8207b4c55189d2e90abc912e361e7230330be22
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/3606 (bundle 2/10410, 16KB, 36.26%) checksum 38217d25b8640c96ec83b474bd94647a8a932d4c
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/3605 (bundle 2/10533, 16KB, 36.31%) checksum 37eb7a8c26b282db27099e7e4790134fc84b1334
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/3604 (bundle 2/10879, 16KB, 36.36%) checksum dcb28d4f0907b79208dd524bdacf3969db1023b6
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/3603_vm (bundle 2/11379, 8KB, 36.39%) checksum c47004345b07fcb57f8bd685edb521eeaf8853b6
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/3603_fsm (bundle 2/11421, 24KB, 36.47%) checksum 46b457ea5ab43f12f467a0550d3b757408edd1e1
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/3603 (bundle 2/11580, 24KB, 36.54%) checksum 5305c16d6b76e3277a73f2c66fe741771f3c506b
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/3602_vm (bundle 2/14060, 8KB, 36.57%) checksum c9e118f6984308b1ae1a6c32b12238ce83dc8222
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/3602_fsm (bundle 2/14102, 24KB, 36.65%) checksum 1309be9d2208e3734197f5c54159924e9996a09f
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/3602 (bundle 2/14246, 8KB, 36.67%) checksum c1881ed441a751112d22720ecc5ba8ad2b64521f
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/3601_vm (bundle 2/14818, 8KB, 36.70%) checksum 86945941ff3b74e4dae11649da388084e4d7ba02
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/3601_fsm (bundle 2/14860, 24KB, 36.78%) checksum c3aae04b3ef7159badac5ce355932c6e0bf63ccf
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/3601 (bundle 2/15004, 8KB, 36.80%) checksum 350e77f04093cbae6f6e58533f9d01c25b2d1d5e
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/3600_vm (bundle 2/15089, 8KB, 36.83%) checksum 25f078a30cac52b134ea93a62ddba56eeb9ee70b
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/3600_fsm (bundle 2/15131, 24KB, 36.91%) checksum af6905907bc0658999ef78947ce9033b9588e8de
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/3600 (bundle 2/15275, 8KB, 36.93%) checksum cc4d23b2f03d0a1bbe0caac36eef1184b1adc34e
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/3599 (bundle 2/16124, 8KB, 36.96%) checksum d154279d3aaef6168c71310ab2d616bed7dd56ca
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/3597 (bundle 2/16181, 8KB, 36.99%) checksum f3c0ce1d1eb37c68cfe15e56c085b9cd5f73af8f
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/3575 (bundle 2/16238, 8KB, 37.01%) checksum 9b53127b31b8f35da2c77e9e86ab7b26f9a82c6e
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/3574 (bundle 2/16295, 8KB, 37.04%) checksum f0716df7c6e493738cc74c9dbae3b5e7c78169ac
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/3542 (bundle 2/16352, 16KB, 37.09%) checksum cdda26b1bea2b27cf322cae50a66059af1ec5e96
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/3541_vm (bundle 2/16507, 8KB, 37.12%) checksum e2492e003665a14773bacd1d6b42cda18beca2fc
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/3541_fsm (bundle 2/16549, 24KB, 37.19%) checksum 03d20a6a9eb8f7fecf298c1062b8aadb3130a88f
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/3541 (bundle 2/16694, 8KB, 37.22%) checksum fc3e49c265d5592f4e878662e5524dfd397725bc
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/3534 (bundle 2/16884, 8KB, 37.24%) checksum 741b2bebaea4e216248e9a8d83a25cc9c47bff6d
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/3503 (bundle 2/16940, 8KB, 37.27%) checksum 56c594e64f92ee2486ebebff877072486dd26b4d
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/3502 (bundle 2/16997, 8KB, 37.30%) checksum d616b3e9fd72993c3948a145b1e18a123cc5dc60
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/3468 (bundle 2/17054, 8KB, 37.32%) checksum 4f4791e2213f33d1ea9c0a7573348d909efd78a2
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/3467 (bundle 2/17111, 8KB, 37.35%) checksum d48b2aeeb5b7ad11e259ede482fbf33adf3fe77d
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/3456_vm (bundle 2/17168, 8KB, 37.37%) checksum 7692c705feee57ba1506a73c6d136f709eafaed0
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/3456_fsm (bundle 2/17213, 24KB, 37.45%) checksum 2094e9d05dca10499034b8d9e454d4260367a3d5
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/3456 (bundle 2/17409, 248KB, 38.26%) checksum 2d17eab42ca73460b824076d02280b2db383d983
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/3455 (bundle 2/49940, 16KB, 38.31%) checksum 4a144448cfca33dfa8c908218217bb6450186ff2
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/3440 (bundle 2/52270, 8KB, 38.34%) checksum b67892c3f2916722a58d47e4086fe70b8ffbe33f
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/3433 (bundle 2/52327, 8KB, 38.36%) checksum 14fd8dbe581dd8cb88a9642eb7af83b20c0dca99
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/3431 (bundle 2/52384, 8KB, 38.39%) checksum 9166e1a07403d20dfe27638d298792aa5c017f1b
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/3395 (bundle 2/52441, 16KB, 38.44%) checksum 4609d5641ccd9b14f6bba5cae8600051bc6a8d18
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/3394_vm (bundle 2/54141, 8KB, 38.47%) checksum 30a9ab0a89ba50c81aaef2905be71c35f9a90b8b
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/3394_fsm (bundle 2/54183, 24KB, 38.54%) checksum 61705f5f6e4e8b4384e6d3dbff14bba4b56c97c6
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/3394 (bundle 2/54342, 24KB, 38.62%) checksum dc644c687e9be599283d331a50ffe4b4e09d485d
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/3380 (bundle 2/56316, 8KB, 38.65%) checksum 08505e4e99c4cb835c2e8377768000626ade8de8
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/3379 (bundle 2/56373, 8KB, 38.67%) checksum 3374fa12d4fca104d1eaa6c4a2240c8a3ba4c199
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/3351 (bundle 2/56430, 8KB, 38.70%) checksum d103621802592e04f102716371ded133f5d02c6c
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/3258 (bundle 2/56487, 8KB, 38.73%) checksum 27584ade854ca98f1d253ce26231a92588aacea1
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/3257 (bundle 2/56544, 8KB, 38.75%) checksum 474ebc18e592918e9d6d811c38dd47790335dd2a
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/3164 (bundle 2/56601, 104KB, 39.09%) checksum 490e4fb1cdff80a9a8817be36eef72e03d4c96c0
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/3119 (bundle 2/73149, 8KB, 39.12%) checksum a94ea56cacdc266f85c2878596b7f8cfd0e605ac
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/3085 (bundle 2/73206, 56KB, 39.30%) checksum c29903f3d0abd2397b650999c7d61297d7a76fcc
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/3081 (bundle 2/79971, 16KB, 39.35%) checksum f15ffcbba885e06b5488e38ab1a9517ca15e9def
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/3080 (bundle 2/80093, 16KB, 39.40%) checksum 9575c9ff586f8397b744f946248b20023f0ae343
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/3079_vm (bundle 2/80215, 8KB, 39.43%) checksum 5350e25e4cb983299915a836d0995a4ab86e9b99
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/3079_fsm (bundle 2/80257, 24KB, 39.50%) checksum 985a7c35efe48e95d02ff6de878b10849fe3fb97
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/3079 (bundle 2/80402, 8KB, 39.53%) checksum 885cd3950dddc84cd190c9c3bad79cdf5aaca196
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/2996 (bundle 2/80487, 8KB, 39.56%) checksum 43a935b44c2ec59340120d06ff377d30283426de
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/2841 (bundle 2/80544, 16KB, 39.61%) checksum fc8071ba1968e66879f03d7169dc12b1fb2c2306
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/2840_vm (bundle 2/80760, 8KB, 39.63%) checksum e15f6df0bb9da1377a494097d36742e29441f64d
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/2840_fsm (bundle 2/80802, 24KB, 39.71%) checksum 51a62d2437f2a2f016720ec89fc079391c5388ea
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/2840 (bundle 2/80959, 24KB, 39.79%) checksum 0d2c3e5320c9b02476e72b79bb8d1ce52555fb8e
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/2839 (bundle 2/97516, 16KB, 39.84%) checksum e94ea7b8f21ceed266a3f39f124ef173e53449fd
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/2838_vm (bundle 2/99471, 8KB, 39.87%) checksum 78ca4281a7ad09da1da2be582999c3d7252375c1
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/2838_fsm (bundle 2/99516, 24KB, 39.95%) checksum fe80df7cefcb4185d6b1540955095322ae909b8a
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/2838 (bundle 2/99780, 504KB, 41.58%) checksum a41b7976fc5836deeaaf9c75a7db92c445f8152c
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/2837 (bundle 2/294686, 16KB, 41.63%) checksum 0cf3f390e2a154f87b2443a1877304928439611a
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/2836_vm (bundle 2/294824, 8KB, 41.66%) checksum 76e75fd256a04d76ef1571f2393dc5275f716bf2
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/2836_fsm (bundle 2/294866, 24KB, 41.74%) checksum d3d338ca373b87065ce8c8bb4e8c6f6a4eaf8b23
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/2836 (bundle 2/295011, 8KB, 41.76%) checksum 9b04d627031237828203c115e58fb211befb4890
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/2835 (bundle 2/298944, 8KB, 41.79%) checksum 50df7e5f60dfb011a3924b775a0aa1d667404a22
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/2833 (bundle 2/299001, 8KB, 41.82%) checksum 474113d7332fc70332fe1a46c5f989a3887b9fc6
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/2831 (bundle 2/299058, 8KB, 41.84%) checksum 6121e91f696d25a77ec87b3af34c1eb129a61736
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/2757 (bundle 2/299115, 32KB, 41.95%) checksum 59457502b5dfb8ba9c45c6ae0681fdfba497b80c
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/2756 (bundle 2/302679, 40KB, 42.08%) checksum 41c704a1baa22cf5667e3359122bcbc07fad01f9
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/2755 (bundle 2/307190, 16KB, 42.13%) checksum 35ea7a595557b84c345f6009a6dde86fa56c5096
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/2754 (bundle 2/308374, 16KB, 42.18%) checksum 528e684a6b50b06ed5223fa98b071a94effa5727
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/2753_vm (bundle 2/309975, 8KB, 42.21%) checksum b4156a90ff1ee1a6fb9e13d805c9027809fe1888
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/2753_fsm (bundle 2/310017, 24KB, 42.28%) checksum 2d22872ac0b47cbc97485d39ff32c07127f405f6
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/2753 (bundle 2/310168, 16KB, 42.34%) checksum 2ffd530df26b6ad03b61dfed58548a0b644e26aa
2026-08-07 02:16:04.800 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/2704 (bundle 2/311976, 40KB, 42.47%) checksum 27e7c86035246c5890a5e86fad6cc141b9d65d71
2026-08-07 02:16:04.801 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/2703 (bundle 2/319121, 32KB, 42.57%) checksum 77eabe8e69107a48bc2083ef791b3c344cf7016a
2026-08-07 02:16:04.801 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/2702 (bundle 2/323094, 8KB, 42.60%) checksum ab6c8daa0a3ec28b3aec8d0c48fe02f578a67428
2026-08-07 02:16:04.801 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/2701 (bundle 2/323151, 8KB, 42.62%) checksum 58cd3814e075dd7e3f585dc0b965ef66110215e8
2026-08-07 02:16:04.801 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/2699 (bundle 2/323208, 8KB, 42.65%) checksum 219efe1bf2acd6241f8fff69e8610818e877ddd3
2026-08-07 02:16:04.801 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/2696 (bundle 2/323265, 32KB, 42.75%) checksum 62e4a396bbf7ebaeb79356f40b2d57fcb158a756
2026-08-07 02:16:04.801 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/2693 (bundle 2/326209, 16KB, 42.80%) checksum 1f4cba1f1e0660cc2a1115ce327712a189212260
2026-08-07 02:16:04.801 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/2692 (bundle 2/327336, 16KB, 42.86%) checksum 44ca3cd2adb33e3406bf2079b1cf563839553793
2026-08-07 02:16:04.801 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/2691 (bundle 2/328376, 256KB, 43.69%) checksum 4173f9ad2aaf4ca298192349b5ced749224f2a88
2026-08-07 02:16:04.801 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/2690 (bundle 2/372949, 96KB, 44.00%) checksum b26cbdb5214ccd9907b809834999130368c504f1
2026-08-07 02:16:04.801 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/2689 (bundle 2/388310, 48KB, 44.15%) checksum 5b21fecd5307343460898c4daf3e19ce80ed8126
2026-08-07 02:16:04.801 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/2688 (bundle 2/393324, 40KB, 44.28%) checksum adbaa34792e557706c0ec9b902194c7ec63e5a42
2026-08-07 02:16:04.801 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/2687 (bundle 2/397729, 16KB, 44.34%) checksum bcd3abcd29c40699264c324bbef8ed42756b9adf
2026-08-07 02:16:04.801 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/2686 (bundle 2/399028, 16KB, 44.39%) checksum f5fa637b2c491e582e7c0d0403753a41788b76f6
2026-08-07 02:16:04.801 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/2685 (bundle 2/400910, 16KB, 44.44%) checksum 1e5d0c9c68c8ca339259d4bd0f2fbb8b85892901
2026-08-07 02:16:04.801 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/2684 (bundle 2/401059, 16KB, 44.49%) checksum 1b033b4a128c79389e3bcc46baf72375971d53d7
2026-08-07 02:16:04.801 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/2683 (bundle 2/401246, 8KB, 44.52%) checksum 06fcedc0598dd4406718ecec97b9284597a3b3d9
2026-08-07 02:16:04.801 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/2682 (bundle 2/401303, 16KB, 44.57%) checksum a6e8d521f0a24f9a516404a1bf0f32e256e25ab4
2026-08-07 02:16:04.801 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/2681 (bundle 2/401450, 16KB, 44.62%) checksum 70217922acf0bf45ddfef4b2079c001f26d8a576
2026-08-07 02:16:04.801 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/2680 (bundle 2/401613, 8KB, 44.65%) checksum d24444037f7ac848bb5a916ca5f3faa101478bb3
2026-08-07 02:16:04.801 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/2679 (bundle 2/401670, 16KB, 44.70%) checksum 7dc07413eac581bac2f06612e499e50a7777f5d8
2026-08-07 02:16:04.801 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/2678 (bundle 2/403054, 16KB, 44.75%) checksum f6fc3dca46d2d88767d9b32203e1ed019c7edcf1
2026-08-07 02:16:04.801 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/2675 (bundle 2/404218, 208KB, 45.43%) checksum c06eee19baae6e4312d5b239688e5aae3e5b766e
2026-08-07 02:16:04.801 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/2674 (bundle 2/432623, 64KB, 45.63%) checksum 2cfe18e5b8c304a7c6a7202a342ec3cacdcc3cb6
2026-08-07 02:16:04.801 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/2673 (bundle 2/439516, 80KB, 45.89%) checksum 31cac899705f4f00fe8631479fa1cc07cc5b64ee
2026-08-07 02:16:04.801 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/2670 (bundle 2/449056, 16KB, 45.95%) checksum 079a6824d519a74a9a6628a89f0160920d39c7ae
2026-08-07 02:16:04.801 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/2669 (bundle 2/450070, 16KB, 46.00%) checksum 1d1d87e607aa17d5de35d5c0df917653e1130931
2026-08-07 02:16:04.801 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/2668 (bundle 2/451420, 16KB, 46.05%) checksum ba03a8319857a49c6aaf92885025ea41ac46af68
2026-08-07 02:16:04.801 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/2667 (bundle 2/452615, 16KB, 46.10%) checksum 2d284f2dbe8b334367cf4bde8c2d0f8e6a0ad29a
2026-08-07 02:16:04.801 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/2666 (bundle 2/453429, 16KB, 46.15%) checksum 6ee072ce3c16fb8c15f4c6263cb1759b990476b4
2026-08-07 02:16:04.801 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/2665 (bundle 2/453939, 16KB, 46.21%) checksum 5a316861c73c1a0934e634bedab671b06361d75d
2026-08-07 02:16:04.801 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/2664 (bundle 2/455973, 16KB, 46.26%) checksum 4ed3907bd16d107ad45cb7a84d686d30b02699fc
2026-08-07 02:16:04.801 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/2663 (bundle 2/457771, 40KB, 46.39%) checksum d2c441d66f7956cef5fddb299bcffda0985a7176
2026-08-07 02:16:04.801 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/2662 (bundle 2/463582, 32KB, 46.49%) checksum cff8ff65c54c6604bdf09ea07e9d2dfdcc8027a3
2026-08-07 02:16:04.801 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/2661 (bundle 2/466591, 16KB, 46.54%) checksum cd63bd4c5dd220e1a05d9b7c66f63434b897043c
2026-08-07 02:16:04.801 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/2660 (bundle 2/468271, 16KB, 46.60%) checksum 07d35843a1bc2ea628a3a17994e5aaabdda7f669
2026-08-07 02:16:04.801 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/2659 (bundle 2/469905, 88KB, 46.88%) checksum 95bfdde6b5bbe78584683c285192b57ccbb466f2
2026-08-07 02:16:04.801 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/2658 (bundle 2/485774, 120KB, 47.27%) checksum 7c7f0c185537248f31b6e586cf55ae83174128af
2026-08-07 02:16:04.801 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/2657 (bundle 2/515089, 8KB, 47.30%) checksum ac41af60b9087855fa643a1312589504304474ab
2026-08-07 02:16:04.801 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/2656 (bundle 2/515146, 8KB, 47.32%) checksum 28ce5d9a5703e9e4c721e6eb517decec4fd50700
2026-08-07 02:16:04.801 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/2655 (bundle 2/515203, 40KB, 47.45%) checksum 8e5747528ce8ef29ed26129793686d050edf1aeb
2026-08-07 02:16:04.801 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/2654 (bundle 2/519334, 48KB, 47.61%) checksum a1a286bf516c7fa529f9e7cacba8f61b5f5e534e
2026-08-07 02:16:04.801 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/2653 (bundle 2/524862, 48KB, 47.76%) checksum 555e04eac3b55dc1531275e94161b6c1d9ec62d2
2026-08-07 02:16:04.801 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/2652 (bundle 2/529970, 16KB, 47.82%) checksum d74f65b43320e968c2b0b9e1a202ea8332a2a8e7
2026-08-07 02:16:04.801 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/2651 (bundle 2/530140, 16KB, 47.87%) checksum d0c5f08895f81907349e9ec9c543107c54da89a4
2026-08-07 02:16:04.801 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/2650 (bundle 2/530328, 16KB, 47.92%) checksum 20d362c1f4a817ab2215f5795a3a972555a58ce2
2026-08-07 02:16:04.801 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/2619_vm (bundle 2/531595, 8KB, 47.95%) checksum cd7a6034f66d614c539b5c59dfd93925f1c23026
2026-08-07 02:16:04.801 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/2619_fsm (bundle 2/531639, 24KB, 48.02%) checksum 6f8a2209e4318799d065a983f9fb80d95531b61f
2026-08-07 02:16:04.801 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/2619 (bundle 2/531831, 160KB, 48.54%) checksum 156398811ede74e8bae8d29f285e69bc78e281e2
2026-08-07 02:16:04.801 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/2618_vm (bundle 2/581987, 8KB, 48.57%) checksum ecfcaf566c17c0ac21a43feb1fd0300c40fa75d9
2026-08-07 02:16:04.801 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/2618_fsm (bundle 2/582032, 24KB, 48.65%) checksum 9a7b894b2d4d5442fd91e728a12ffcef5ee1e40e
2026-08-07 02:16:04.801 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/2618 (bundle 2/582218, 112KB, 49.01%) checksum 4ee299c7362ff8391b90110e0c8de1dbe6c1d61f
2026-08-07 02:16:04.801 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/2617_vm (bundle 2/619479, 8KB, 49.04%) checksum a7e00e516b3822ee455b79db598c7e55cb1d8210
2026-08-07 02:16:04.801 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/2617_fsm (bundle 2/619524, 24KB, 49.11%) checksum 3380b846c2c3145b28aab6a71c54c3bbe01b5d85
2026-08-07 02:16:04.801 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/2617 (bundle 2/619702, 112KB, 49.48%) checksum 3e7291d626e3c96e42ed9a1242fe5b6d7bc52634
2026-08-07 02:16:04.801 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/2616_vm (bundle 2/631907, 8KB, 49.50%) checksum 8d839ed5a5018fed8d6e946f40b7cae15aad830f
2026-08-07 02:16:04.801 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/2616_fsm (bundle 2/631949, 24KB, 49.58%) checksum e883c3355c47a092bd6ded8a07cfca38f14c078b
2026-08-07 02:16:04.801 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/2616 (bundle 2/632108, 24KB, 49.66%) checksum 7132e7a6e52783cc5a915ec4736d87a4942b1640
2026-08-07 02:16:04.801 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/2615_vm (bundle 2/634938, 8KB, 49.69%) checksum 2bba350ae6d8f08e229d2454d703db195fe183bd
2026-08-07 02:16:04.801 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/2615_fsm (bundle 2/634980, 24KB, 49.76%) checksum bd37d17927ad5ec289762c702b466ada1c9279a0
2026-08-07 02:16:04.801 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/2615 (bundle 2/635125, 8KB, 49.79%) checksum 8879c4621ff37b608213d2ddd8036b555b125229
2026-08-07 02:16:04.801 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/2612_vm (bundle 2/635363, 8KB, 49.82%) checksum c723d0b226200047fd526de8b902f6d04832b973
2026-08-07 02:16:04.801 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/2612_fsm (bundle 2/635405, 24KB, 49.89%) checksum 76ffa5246189e9944f83c5d47e4a24f6106ea6ac
2026-08-07 02:16:04.802 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/2612 (bundle 2/635550, 8KB, 49.92%) checksum 557b32fdec037f2a267bf89a74af7bc580192290
2026-08-07 02:16:04.802 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/2610_vm (bundle 2/635707, 8KB, 49.95%) checksum b55a3fea5812d1248e0dc56867ffe6df1c3c0959
2026-08-07 02:16:04.802 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/2610_fsm (bundle 2/635749, 24KB, 50.02%) checksum 9d1753aef6e95f1e1649079f0ed50160386346cd
2026-08-07 02:16:04.802 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/2610 (bundle 2/635909, 32KB, 50.13%) checksum eaa868c8eddb435a3a2023205fea3eb4feee33c8
2026-08-07 02:16:04.802 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/2609_vm (bundle 2/639121, 8KB, 50.15%) checksum be2fa528c0f2f2b0a0d7411756a92cf98da90c1e
2026-08-07 02:16:04.802 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/2609_fsm (bundle 2/639165, 24KB, 50.23%) checksum 8810aa4f1ca0e6c5e13e4bb9a74d3d5a8035a8e5
2026-08-07 02:16:04.802 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/2609 (bundle 2/639373, 352KB, 51.37%) checksum d370edc30da2a2a383eaca1e9bc1965017376a37
2026-08-07 02:16:04.802 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/2608_vm (bundle 2/713223, 8KB, 51.40%) checksum 696278e56f124b861067cc30061a1e2646950e10
2026-08-07 02:16:04.802 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/2608_fsm (bundle 2/713268, 24KB, 51.48%) checksum c5aa1a29414cc80f3105a5b96cbc80bffac7e48d
2026-08-07 02:16:04.802 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/2608 (bundle 2/713439, 104KB, 51.82%) checksum f085ae8c3f684219233029244be125e76f2bc91e
2026-08-07 02:16:04.802 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/2607_vm (bundle 2/725562, 8KB, 51.84%) checksum 0ba4b368075435d86a8e883cca6652292a195ec5
2026-08-07 02:16:04.802 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/2607_fsm (bundle 2/725604, 24KB, 51.92%) checksum 66ae81a790aa27524756e4a0e52f008d92d7c5e3
2026-08-07 02:16:04.802 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/2607 (bundle 2/725755, 16KB, 51.97%) checksum c9f5aa95b550f5e6c9e5fbdfc0b289f9f655c7f9
2026-08-07 02:16:04.802 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/2606_vm (bundle 2/727717, 8KB, 52.00%) checksum 99e3636b4d7af9dc6de2d8cf640dea0ef2e7f8a5
2026-08-07 02:16:04.802 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/2606_fsm (bundle 2/727759, 24KB, 52.08%) checksum f34f4df351e8a97a22868313bf6edda620d9e17b
2026-08-07 02:16:04.802 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/2606 (bundle 2/727918, 24KB, 52.15%) checksum 99f35e4ea8a26017ab4342d8a6599eb2ad23ff5b
2026-08-07 02:16:04.802 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/2605_vm (bundle 2/731782, 8KB, 52.18%) checksum b69d48d375de2053270b1fff6ea896f6f81243a2
2026-08-07 02:16:04.802 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/2605_fsm (bundle 2/731824, 24KB, 52.26%) checksum fed5dbac3d31eac1eff9f1d19a0dbae3f125cd26
2026-08-07 02:16:04.802 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/2605 (bundle 2/731977, 16KB, 52.31%) checksum ac7994a8364e51164a56ebacb370fc7339712389
2026-08-07 02:16:04.802 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/2603_vm (bundle 2/734438, 8KB, 52.34%) checksum 86aed3a6ca550e15d46d3517a93fc4d51ad0535c
2026-08-07 02:16:04.802 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/2603_fsm (bundle 2/734481, 24KB, 52.41%) checksum df3dbf932dfb6c578d697b82a4e6c8e123a854de
2026-08-07 02:16:04.802 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/2603 (bundle 2/734648, 40KB, 52.54%) checksum 979ffd3a0e42ee251a17021f3573e9bc33cb448d
2026-08-07 02:16:04.802 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/2602_vm (bundle 2/740817, 8KB, 52.57%) checksum 20f00e904d346fc3edfc3a937f71d778883e88f2
2026-08-07 02:16:04.802 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/2602_fsm (bundle 2/740860, 24KB, 52.65%) checksum 6ea3406f5c8b1f3d6629ad88b022c3775ddec22b
2026-08-07 02:16:04.802 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/2602 (bundle 2/741027, 56KB, 52.83%) checksum f84c51433d2ad4f3e25fae1e10160ff665c239b8
2026-08-07 02:16:04.802 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/2601_vm (bundle 2/749082, 8KB, 52.85%) checksum dd9303f7b3ecb3703cebd9c61c928ee0f690b7b9
2026-08-07 02:16:04.802 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/2601_fsm (bundle 2/749124, 24KB, 52.93%) checksum 14eabf611940e704d2de8f26f208a4cab4f3950b
2026-08-07 02:16:04.802 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/2601 (bundle 2/749269, 8KB, 52.96%) checksum 3931866433f09444c58f84b7235dc1dc5a80f0a4
2026-08-07 02:16:04.802 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/2600_vm (bundle 2/749461, 8KB, 52.98%) checksum f2f31965a6405ba785b7f51859b30756281b71c4
2026-08-07 02:16:04.802 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/2600_fsm (bundle 2/749503, 24KB, 53.06%) checksum ff2c96ed61411d9ed86f99379c8a9dec7d12e3be
2026-08-07 02:16:04.802 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/2600 (bundle 2/749654, 16KB, 53.11%) checksum fe7fd76d1ae33b15713897de8e61e7dd2ab38ba8
2026-08-07 02:16:04.802 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/2579 (bundle 2/752128, 16KB, 53.17%) checksum fa437dc7fe8466c2099c81657b0b35e2121e4959
2026-08-07 02:16:04.802 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/2337 (bundle 2/752622, 8KB, 53.19%) checksum 7cdfa90eed84a033d1ae4fd2ae8fa8b2646f9d86
2026-08-07 02:16:04.802 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/2228 (bundle 2/752679, 16KB, 53.24%) checksum 24d2bde7d2f1ed3e84b3d2fbf0f60637a9dde457
2026-08-07 02:16:04.802 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/2187 (bundle 2/752837, 8KB, 53.27%) checksum 42c11e337bb0c30aaf7d246c8430d0aa3adb8115
2026-08-07 02:16:04.802 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/175 (bundle 2/752894, 8KB, 53.30%) checksum ff238621245de4bb91c038e697042dbc15628a8d
2026-08-07 02:16:04.802 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/174 (bundle 2/752951, 8KB, 53.32%) checksum db852111f393d18bb2f48bd1122aa63e9b5f68c1
2026-08-07 02:16:04.802 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/14335 (bundle 2/753008, 8KB, 53.35%) checksum 9845ae7baa7a57eec140df7dbd6ecad0649d4a01
2026-08-07 02:16:04.802 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/14331_vm (bundle 2/753065, 8KB, 53.37%) checksum 363c6c1562674fea89cfdf4a7ddab8c22bcd388a
2026-08-07 02:16:04.802 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/14331_fsm (bundle 2/753107, 24KB, 53.45%) checksum daf82623eba2c44b34b164ac969bbe26c6a17827
2026-08-07 02:16:04.802 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/14331 (bundle 2/753252, 8KB, 53.48%) checksum 5b4e0f86f6d1cb59f01d24ea1a04c079ecfc272d
2026-08-07 02:16:04.802 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/14330 (bundle 2/753926, 8KB, 53.50%) checksum c78737100a49bf46c5cf6cdbd097dd5e4e0fe560
2026-08-07 02:16:04.802 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/14326_vm (bundle 2/753983, 8KB, 53.53%) checksum b6ba61f0ecc5f81638a9eb317b777795ec924be0
2026-08-07 02:16:04.802 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/14326_fsm (bundle 2/754025, 24KB, 53.61%) checksum 2df350e337a1db82fd2edc362d136c02b1af3151
2026-08-07 02:16:04.802 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/14326 (bundle 2/754170, 8KB, 53.63%) checksum 5e8af9a9663c61bc1dbbc28dfb424ab9803006d5
2026-08-07 02:16:04.802 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/14325 (bundle 2/754661, 8KB, 53.66%) checksum 1a765d5bf603bbd576083dc50d9a04dd56886e63
2026-08-07 02:16:04.802 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/14321_vm (bundle 2/754718, 8KB, 53.69%) checksum 4191d5d6387417bfb98a16f4af245dc1f2ec1c7d
2026-08-07 02:16:04.802 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/14321_fsm (bundle 2/754760, 24KB, 53.76%) checksum 2f288afc02628a254dfc5f3c1645c4acd7d59db5
2026-08-07 02:16:04.802 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/14321 (bundle 2/754905, 8KB, 53.79%) checksum eff28b00891b206d1ea82c07cb072f8e6fd9a0fc
2026-08-07 02:16:04.802 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/14320 (bundle 2/755496, 8KB, 53.82%) checksum c225a887fbb2067ad924c639d544c43a196c4755
2026-08-07 02:16:04.802 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/14316_vm (bundle 2/755553, 8KB, 53.84%) checksum 25f902edf91dcdf0436c6a99749a7a6cad95b772
2026-08-07 02:16:04.802 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/14316_fsm (bundle 2/755596, 24KB, 53.92%) checksum db6e362ba69966081bb2efe276f0b910ac800763
2026-08-07 02:16:04.802 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/14316 (bundle 2/755762, 64KB, 54.13%) checksum da6433fc2d12dba8210ae6804dcba1b604061d48
2026-08-07 02:16:04.802 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/1259_vm (bundle 2/772129, 8KB, 54.15%) checksum fc4f1043b61b6dfc3f5dac1927291dccf803940b
2026-08-07 02:16:04.802 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/1259_fsm (bundle 2/772174, 24KB, 54.23%) checksum 38225fc4b4189cc8c421f2b953913d0276608c8c
2026-08-07 02:16:04.802 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/1259 (bundle 2/772356, 112KB, 54.60%) checksum 208711e7e9003033efbdcff2f87723d0f1ba5e18
2026-08-07 02:16:04.802 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/1255_vm (bundle 2/783837, 8KB, 54.62%) checksum 4af2989b26b16c53e6f683833acaf6855faf53dc
2026-08-07 02:16:04.802 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/1255_fsm (bundle 2/783882, 24KB, 54.70%) checksum 9c8791977ad12fede6ef264854a71b76c0a15441
2026-08-07 02:16:04.802 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/1255 (bundle 2/784200, 792KB, 57.27%) checksum 3b0a129671228c9468c38caa123de3725595677f
2026-08-07 02:16:04.802 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/1249_vm (bundle 2/879603, 8KB, 57.30%) checksum 1844ecbfa8174095af5a07828c6a8776c8418c5e
2026-08-07 02:16:04.802 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/1249_fsm (bundle 2/879648, 24KB, 57.37%) checksum cb6b2bbc4f257a9ec0362562e182f6100a227859
2026-08-07 02:16:04.802 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/1249 (bundle 2/879868, 440KB, 58.80%) checksum 15aaabec98ce35924f0175ba7d029ccfabcf7dd0
2026-08-07 02:16:04.802 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/1247_vm (bundle 2/909858, 8KB, 58.83%) checksum edba574c7357baeba4327e2ff0855d255257ee7b
2026-08-07 02:16:04.802 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/1247_fsm (bundle 2/909903, 24KB, 58.91%) checksum fe238cbc5fc0d1e0c1b1664d0daa1925a664269f
2026-08-07 02:16:04.802 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/1247 (bundle 2/910082, 120KB, 59.30%) checksum d85bf2311eb3dbd4aef995d2a259a21aa201a97b
2026-08-07 02:16:04.802 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/113 (bundle 2/921036, 8KB, 59.32%) checksum 1cd643347b87a472ff001ae124e4b532ce998d2f
2026-08-07 02:16:04.802 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/5/112 (bundle 2/921093, 8KB, 59.35%) checksum 2cbd5cf8fb22ef627eb539776c5ec7457bdb2890
2026-08-07 02:16:04.802 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/pg_filenode.map (bundle 2/921150, 524B, 59.35%) checksum bbceb133f7ed635fbff25a30c6d029f9c1b5f9f4
2026-08-07 02:16:04.802 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/PG_VERSION (bundle 2/921232, 3B, 59.35%) checksum ad48103e4fc71796e9708cafc43adeed0d1076b7
2026-08-07 02:16:04.802 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/828 (bundle 2/921244, 8KB, 59.38%) checksum ca3e41f9deaab54a0ba8695ea5f83afb24e50190
2026-08-07 02:16:04.802 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/827 (bundle 2/921301, 8KB, 59.40%) checksum 762b2cc0901b8bc3641c9658533dd9bf5ad9741c
2026-08-07 02:16:04.802 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/6239 (bundle 2/921358, 8KB, 59.43%) checksum cf98743febad323ee9eb358251fbde85853b73c3
2026-08-07 02:16:04.802 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/6238 (bundle 2/921415, 8KB, 59.45%) checksum 1d4155d43adf6440852dfbdc4e3110923ff51b15
2026-08-07 02:16:04.802 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/6229 (bundle 2/921472, 8KB, 59.48%) checksum 10bc529a49b124ec4e913a426f83e1afe6ea6393
2026-08-07 02:16:04.802 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/6176 (bundle 2/921529, 8KB, 59.51%) checksum 2865ab953309091d1283f46ba2c4d01a1adff223
2026-08-07 02:16:04.802 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/6117 (bundle 2/921586, 8KB, 59.53%) checksum 8d35ff1d1e0d927452e465970f10538004eecbac
2026-08-07 02:16:04.802 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/6116 (bundle 2/921643, 8KB, 59.56%) checksum 30cc1d5bb98ee699a35fd66e19a6b338a60d4359
2026-08-07 02:16:04.803 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/6113 (bundle 2/921700, 8KB, 59.58%) checksum 3cae2d582d12f92ea8e6e83d0242fe61a30d54ba
2026-08-07 02:16:04.803 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/6112 (bundle 2/921757, 8KB, 59.61%) checksum c0e21051611315e334bd44b595865930005de8b6
2026-08-07 02:16:04.803 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/6111 (bundle 2/921814, 8KB, 59.64%) checksum 8b95a1529616a538b8a2820ec8f2c54d2fe3ae9d
2026-08-07 02:16:04.803 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/6110 (bundle 2/921871, 8KB, 59.66%) checksum 072b289b74c095dd9b5545467f6826e73ce58ba3
2026-08-07 02:16:04.803 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/549 (bundle 2/921928, 8KB, 59.69%) checksum d088f7c671a94155a2be276e5386c529b53bd434
2026-08-07 02:16:04.803 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/548 (bundle 2/921985, 8KB, 59.71%) checksum 3172aa7cf0545bd03f10147264d22193e7c435bb
2026-08-07 02:16:04.803 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/5002 (bundle 2/922042, 8KB, 59.74%) checksum 352a0a5027c122978a09c17ee84a89630adc7a59
2026-08-07 02:16:04.803 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/4174 (bundle 2/922099, 8KB, 59.77%) checksum 650300088fb08e9fcdd1781d3aa65a16b12e20bb
2026-08-07 02:16:04.803 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/4172 (bundle 2/922156, 8KB, 59.79%) checksum cd7609dd6646dc26c1ed2095c66f928a1390e051
2026-08-07 02:16:04.803 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/4170 (bundle 2/922213, 8KB, 59.82%) checksum 0a94418a34d1bf090268a3deaf6c12781c09c3a1
2026-08-07 02:16:04.803 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/4168 (bundle 2/922270, 8KB, 59.84%) checksum 03cb3fa0c38fc5face7d6e74b2a5e2f5d45bd851
2026-08-07 02:16:04.803 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/4166 (bundle 2/922327, 8KB, 59.87%) checksum 5b520b3a06a6642a3b4c80963ca276c7e424722f
2026-08-07 02:16:04.803 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/4164 (bundle 2/922384, 8KB, 59.90%) checksum fbdef8e4b35a8bcd620ad0dbe024debdf9f55d02
2026-08-07 02:16:04.803 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/4160 (bundle 2/922441, 8KB, 59.92%) checksum 6ecb32e625a0fb31ae5584567c8c4e6cc86fca6a
2026-08-07 02:16:04.803 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/4158 (bundle 2/922498, 8KB, 59.95%) checksum 9ce1692abd77ac1be81e00ab629899039b79337a
2026-08-07 02:16:04.803 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/4156 (bundle 2/922555, 8KB, 59.97%) checksum 8f8309f9b6e1a3827b4b6bfa8a7ea74c4a71578f
2026-08-07 02:16:04.803 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/4154 (bundle 2/922612, 8KB, 60.00%) checksum ceaf3d70517a48c3195b33a866cae1a6ae475544
2026-08-07 02:16:04.803 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/4152 (bundle 2/922669, 8KB, 60.03%) checksum 7fe7f9718187d20ee270a60672a057d78b8888f0
2026-08-07 02:16:04.803 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/4150 (bundle 2/922726, 8KB, 60.05%) checksum 12928920044f2fbf053a61d94cc4997d89172649
2026-08-07 02:16:04.803 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/4148 (bundle 2/922783, 8KB, 60.08%) checksum cd020de740bf9e3054f814eb62bd5465485168c5
2026-08-07 02:16:04.803 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/4146 (bundle 2/922840, 8KB, 60.10%) checksum f03a29deeaac474da866bea42756776682c30d5f
2026-08-07 02:16:04.803 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/4144 (bundle 2/922897, 8KB, 60.13%) checksum f4b593aa46ac5d1a86b9b7b3f95b303e36780832
2026-08-07 02:16:04.803 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/3997 (bundle 2/922954, 8KB, 60.16%) checksum e5458dff91a04574b06bc35554fbd5d6a30afc6d
2026-08-07 02:16:04.803 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/3767 (bundle 2/923011, 16KB, 60.21%) checksum ec5397a797d3049e5671796df2727ca616aa5470
2026-08-07 02:16:04.803 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/3766 (bundle 2/923165, 16KB, 60.26%) checksum 993116fc58097648f345244b73128170ad3b529b
2026-08-07 02:16:04.803 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/3764_vm (bundle 2/923354, 8KB, 60.28%) checksum 11ab26a6db1a2d53b5a2c38f9c3d312d8d12dc75
2026-08-07 02:16:04.803 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/3764_fsm (bundle 2/923396, 24KB, 60.36%) checksum 101caee5f2f3a2a738b7a6672466bc62345dd962
2026-08-07 02:16:04.803 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/3764 (bundle 2/923541, 8KB, 60.39%) checksum 03d802f9f6d5f18ec952a1f884535d45f907ffb4
2026-08-07 02:16:04.803 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/3712 (bundle 2/923723, 16KB, 60.44%) checksum 8739d1e86c63b9664c30def1716d0ab0b68986a4
2026-08-07 02:16:04.803 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/3609 (bundle 2/924066, 32KB, 60.54%) checksum a52aeddacb08762d10c1605df71172927de45280
2026-08-07 02:16:04.803 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/3608 (bundle 2/927474, 16KB, 60.60%) checksum efe23d086afd4e0426b6c240ec7690d712ab3b02
2026-08-07 02:16:04.803 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/3607 (bundle 2/927956, 16KB, 60.65%) checksum b8207b4c55189d2e90abc912e361e7230330be22
2026-08-07 02:16:04.803 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/3606 (bundle 2/928079, 16KB, 60.70%) checksum 38217d25b8640c96ec83b474bd94647a8a932d4c
2026-08-07 02:16:04.803 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/3605 (bundle 2/928203, 16KB, 60.75%) checksum 37eb7a8c26b282db27099e7e4790134fc84b1334
2026-08-07 02:16:04.803 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/3604 (bundle 2/928550, 16KB, 60.80%) checksum dcb28d4f0907b79208dd524bdacf3969db1023b6
2026-08-07 02:16:04.803 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/3603_vm (bundle 2/929051, 8KB, 60.83%) checksum c47004345b07fcb57f8bd685edb521eeaf8853b6
2026-08-07 02:16:04.803 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/3603_fsm (bundle 2/929093, 24KB, 60.91%) checksum 46b457ea5ab43f12f467a0550d3b757408edd1e1
2026-08-07 02:16:04.803 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/3603 (bundle 2/929253, 24KB, 60.99%) checksum 5305c16d6b76e3277a73f2c66fe741771f3c506b
2026-08-07 02:16:04.803 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/3602_vm (bundle 2/931734, 8KB, 61.01%) checksum c9e118f6984308b1ae1a6c32b12238ce83dc8222
2026-08-07 02:16:04.803 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/3602_fsm (bundle 2/931776, 24KB, 61.09%) checksum 1309be9d2208e3734197f5c54159924e9996a09f
2026-08-07 02:16:04.803 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/3602 (bundle 2/931921, 8KB, 61.12%) checksum c1881ed441a751112d22720ecc5ba8ad2b64521f
2026-08-07 02:16:04.803 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/3601_vm (bundle 2/932493, 8KB, 61.14%) checksum 86945941ff3b74e4dae11649da388084e4d7ba02
2026-08-07 02:16:04.803 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/3601_fsm (bundle 2/932535, 24KB, 61.22%) checksum c3aae04b3ef7159badac5ce355932c6e0bf63ccf
2026-08-07 02:16:04.803 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/3601 (bundle 2/932680, 8KB, 61.25%) checksum 350e77f04093cbae6f6e58533f9d01c25b2d1d5e
2026-08-07 02:16:04.803 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/3600_vm (bundle 2/932765, 8KB, 61.27%) checksum 25f078a30cac52b134ea93a62ddba56eeb9ee70b
2026-08-07 02:16:04.803 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/3600_fsm (bundle 2/932807, 24KB, 61.35%) checksum af6905907bc0658999ef78947ce9033b9588e8de
2026-08-07 02:16:04.803 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/3600 (bundle 2/932952, 8KB, 61.38%) checksum cc4d23b2f03d0a1bbe0caac36eef1184b1adc34e
2026-08-07 02:16:04.803 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/3599 (bundle 2/933801, 8KB, 61.40%) checksum d154279d3aaef6168c71310ab2d616bed7dd56ca
2026-08-07 02:16:04.803 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/3597 (bundle 2/933858, 8KB, 61.43%) checksum f3c0ce1d1eb37c68cfe15e56c085b9cd5f73af8f
2026-08-07 02:16:04.803 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/3575 (bundle 2/933915, 8KB, 61.45%) checksum 9b53127b31b8f35da2c77e9e86ab7b26f9a82c6e
2026-08-07 02:16:04.803 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/3574 (bundle 2/933972, 8KB, 61.48%) checksum f0716df7c6e493738cc74c9dbae3b5e7c78169ac
2026-08-07 02:16:04.803 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/3542 (bundle 2/934029, 16KB, 61.53%) checksum cdda26b1bea2b27cf322cae50a66059af1ec5e96
2026-08-07 02:16:04.803 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/3541_vm (bundle 2/934185, 8KB, 61.56%) checksum e2492e003665a14773bacd1d6b42cda18beca2fc
2026-08-07 02:16:04.803 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/3541_fsm (bundle 2/934227, 24KB, 61.64%) checksum 03d20a6a9eb8f7fecf298c1062b8aadb3130a88f
2026-08-07 02:16:04.803 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/3541 (bundle 2/934372, 8KB, 61.66%) checksum fc3e49c265d5592f4e878662e5524dfd397725bc
2026-08-07 02:16:04.803 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/3534 (bundle 2/934562, 8KB, 61.69%) checksum 741b2bebaea4e216248e9a8d83a25cc9c47bff6d
2026-08-07 02:16:04.803 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/3503 (bundle 2/934618, 8KB, 61.71%) checksum 56c594e64f92ee2486ebebff877072486dd26b4d
2026-08-07 02:16:04.803 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/3502 (bundle 2/934675, 8KB, 61.74%) checksum d616b3e9fd72993c3948a145b1e18a123cc5dc60
2026-08-07 02:16:04.803 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/3468 (bundle 2/934732, 8KB, 61.77%) checksum 4f4791e2213f33d1ea9c0a7573348d909efd78a2
2026-08-07 02:16:04.803 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/3467 (bundle 2/934789, 8KB, 61.79%) checksum d48b2aeeb5b7ad11e259ede482fbf33adf3fe77d
2026-08-07 02:16:04.803 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/3456_vm (bundle 2/934846, 8KB, 61.82%) checksum 7692c705feee57ba1506a73c6d136f709eafaed0
2026-08-07 02:16:04.803 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/3456_fsm (bundle 2/934891, 24KB, 61.90%) checksum 2094e9d05dca10499034b8d9e454d4260367a3d5
2026-08-07 02:16:04.803 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/3456 (bundle 2/935087, 248KB, 62.70%) checksum 2d17eab42ca73460b824076d02280b2db383d983
2026-08-07 02:16:04.803 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/3455 (bundle 2/967618, 16KB, 62.75%) checksum 4a144448cfca33dfa8c908218217bb6450186ff2
2026-08-07 02:16:04.803 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/3440 (bundle 2/969948, 8KB, 62.78%) checksum b67892c3f2916722a58d47e4086fe70b8ffbe33f
2026-08-07 02:16:04.803 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/3433 (bundle 2/970005, 8KB, 62.80%) checksum 14fd8dbe581dd8cb88a9642eb7af83b20c0dca99
2026-08-07 02:16:04.803 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/3431 (bundle 2/970062, 8KB, 62.83%) checksum 9166e1a07403d20dfe27638d298792aa5c017f1b
2026-08-07 02:16:04.803 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/3395 (bundle 2/970119, 16KB, 62.88%) checksum 4609d5641ccd9b14f6bba5cae8600051bc6a8d18
2026-08-07 02:16:04.803 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/3394_vm (bundle 2/971819, 8KB, 62.91%) checksum 30a9ab0a89ba50c81aaef2905be71c35f9a90b8b
2026-08-07 02:16:04.803 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/3394_fsm (bundle 2/971861, 24KB, 62.99%) checksum 61705f5f6e4e8b4384e6d3dbff14bba4b56c97c6
2026-08-07 02:16:04.803 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/3394 (bundle 2/972020, 24KB, 63.06%) checksum dc644c687e9be599283d331a50ffe4b4e09d485d
2026-08-07 02:16:04.803 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/3380 (bundle 2/973994, 8KB, 63.09%) checksum 08505e4e99c4cb835c2e8377768000626ade8de8
2026-08-07 02:16:04.803 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/3379 (bundle 2/974051, 8KB, 63.12%) checksum 3374fa12d4fca104d1eaa6c4a2240c8a3ba4c199
2026-08-07 02:16:04.803 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/3351 (bundle 2/974108, 8KB, 63.14%) checksum d103621802592e04f102716371ded133f5d02c6c
2026-08-07 02:16:04.803 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/3258 (bundle 2/974165, 8KB, 63.17%) checksum 27584ade854ca98f1d253ce26231a92588aacea1
2026-08-07 02:16:04.803 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/3257 (bundle 2/974222, 8KB, 63.19%) checksum 474ebc18e592918e9d6d811c38dd47790335dd2a
2026-08-07 02:16:04.803 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/3164 (bundle 2/974279, 104KB, 63.53%) checksum 490e4fb1cdff80a9a8817be36eef72e03d4c96c0
2026-08-07 02:16:04.803 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/3119 (bundle 2/990827, 8KB, 63.56%) checksum a94ea56cacdc266f85c2878596b7f8cfd0e605ac
2026-08-07 02:16:04.803 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/3085 (bundle 2/990884, 56KB, 63.74%) checksum c29903f3d0abd2397b650999c7d61297d7a76fcc
2026-08-07 02:16:04.804 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/3081 (bundle 2/997649, 16KB, 63.79%) checksum f15ffcbba885e06b5488e38ab1a9517ca15e9def
2026-08-07 02:16:04.804 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/3080 (bundle 2/997771, 16KB, 63.84%) checksum 9575c9ff586f8397b744f946248b20023f0ae343
2026-08-07 02:16:04.804 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/3079_vm (bundle 2/997893, 8KB, 63.87%) checksum 5350e25e4cb983299915a836d0995a4ab86e9b99
2026-08-07 02:16:04.804 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/3079_fsm (bundle 2/997935, 24KB, 63.95%) checksum 985a7c35efe48e95d02ff6de878b10849fe3fb97
2026-08-07 02:16:04.804 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/3079 (bundle 2/998080, 8KB, 63.97%) checksum 885cd3950dddc84cd190c9c3bad79cdf5aaca196
2026-08-07 02:16:04.804 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/2996 (bundle 2/998165, 8KB, 64.00%) checksum 43a935b44c2ec59340120d06ff377d30283426de
2026-08-07 02:16:04.804 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/2841 (bundle 2/998222, 16KB, 64.05%) checksum fc8071ba1968e66879f03d7169dc12b1fb2c2306
2026-08-07 02:16:04.804 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/2840_vm (bundle 2/998438, 8KB, 64.08%) checksum e15f6df0bb9da1377a494097d36742e29441f64d
2026-08-07 02:16:04.804 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/2840_fsm (bundle 2/998480, 24KB, 64.16%) checksum 51a62d2437f2a2f016720ec89fc079391c5388ea
2026-08-07 02:16:04.804 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/2840 (bundle 2/998637, 24KB, 64.23%) checksum 0d2c3e5320c9b02476e72b79bb8d1ce52555fb8e
2026-08-07 02:16:04.804 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/2839 (bundle 2/1015194, 16KB, 64.28%) checksum e94ea7b8f21ceed266a3f39f124ef173e53449fd
2026-08-07 02:16:04.804 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/2838_vm (bundle 2/1017149, 8KB, 64.31%) checksum 78ca4281a7ad09da1da2be582999c3d7252375c1
2026-08-07 02:16:04.804 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/2838_fsm (bundle 2/1017194, 24KB, 64.39%) checksum fe80df7cefcb4185d6b1540955095322ae909b8a
2026-08-07 02:16:04.804 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/2838 (bundle 2/1017458, 504KB, 66.03%) checksum a41b7976fc5836deeaaf9c75a7db92c445f8152c
2026-08-07 02:16:04.804 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/2837 (bundle 2/1212364, 16KB, 66.08%) checksum 0cf3f390e2a154f87b2443a1877304928439611a
2026-08-07 02:16:04.804 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/2836_vm (bundle 2/1212502, 8KB, 66.10%) checksum 76e75fd256a04d76ef1571f2393dc5275f716bf2
2026-08-07 02:16:04.804 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/2836_fsm (bundle 2/1212544, 24KB, 66.18%) checksum d3d338ca373b87065ce8c8bb4e8c6f6a4eaf8b23
2026-08-07 02:16:04.804 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/2836 (bundle 2/1212689, 8KB, 66.21%) checksum 9b04d627031237828203c115e58fb211befb4890
2026-08-07 02:16:04.804 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/2835 (bundle 2/1216622, 8KB, 66.23%) checksum 50df7e5f60dfb011a3924b775a0aa1d667404a22
2026-08-07 02:16:04.804 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/2833 (bundle 2/1216679, 8KB, 66.26%) checksum 474113d7332fc70332fe1a46c5f989a3887b9fc6
2026-08-07 02:16:04.804 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/2831 (bundle 2/1216736, 8KB, 66.28%) checksum 6121e91f696d25a77ec87b3af34c1eb129a61736
2026-08-07 02:16:04.804 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/2757 (bundle 2/1216793, 32KB, 66.39%) checksum 59457502b5dfb8ba9c45c6ae0681fdfba497b80c
2026-08-07 02:16:04.804 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/2756 (bundle 2/1220357, 40KB, 66.52%) checksum 41c704a1baa22cf5667e3359122bcbc07fad01f9
2026-08-07 02:16:04.804 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/2755 (bundle 2/1224868, 16KB, 66.57%) checksum 35ea7a595557b84c345f6009a6dde86fa56c5096
2026-08-07 02:16:04.804 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/2754 (bundle 2/1226052, 16KB, 66.62%) checksum 528e684a6b50b06ed5223fa98b071a94effa5727
2026-08-07 02:16:04.804 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/2753_vm (bundle 2/1227653, 8KB, 66.65%) checksum b4156a90ff1ee1a6fb9e13d805c9027809fe1888
2026-08-07 02:16:04.804 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/2753_fsm (bundle 2/1227695, 24KB, 66.73%) checksum 2d22872ac0b47cbc97485d39ff32c07127f405f6
2026-08-07 02:16:04.804 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/2753 (bundle 2/1227846, 16KB, 66.78%) checksum 2ffd530df26b6ad03b61dfed58548a0b644e26aa
2026-08-07 02:16:04.804 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/2704 (bundle 2/1229654, 40KB, 66.91%) checksum 27e7c86035246c5890a5e86fad6cc141b9d65d71
2026-08-07 02:16:04.804 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/2703 (bundle 2/1236799, 32KB, 67.01%) checksum 77eabe8e69107a48bc2083ef791b3c344cf7016a
2026-08-07 02:16:04.804 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/2702 (bundle 2/1240772, 8KB, 67.04%) checksum ab6c8daa0a3ec28b3aec8d0c48fe02f578a67428
2026-08-07 02:16:04.804 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/2701 (bundle 2/1240829, 8KB, 67.06%) checksum 58cd3814e075dd7e3f585dc0b965ef66110215e8
2026-08-07 02:16:04.804 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/2699 (bundle 2/1240886, 8KB, 67.09%) checksum 219efe1bf2acd6241f8fff69e8610818e877ddd3
2026-08-07 02:16:04.804 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/2696 (bundle 2/1240943, 32KB, 67.19%) checksum 62e4a396bbf7ebaeb79356f40b2d57fcb158a756
2026-08-07 02:16:04.804 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/2693 (bundle 2/1243887, 16KB, 67.25%) checksum 1f4cba1f1e0660cc2a1115ce327712a189212260
2026-08-07 02:16:04.804 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/2692 (bundle 2/1245014, 16KB, 67.30%) checksum 44ca3cd2adb33e3406bf2079b1cf563839553793
2026-08-07 02:16:04.804 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/2691 (bundle 2/1246054, 256KB, 68.13%) checksum 4173f9ad2aaf4ca298192349b5ced749224f2a88
2026-08-07 02:16:04.804 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/2690 (bundle 2/1290627, 96KB, 68.44%) checksum b26cbdb5214ccd9907b809834999130368c504f1
2026-08-07 02:16:04.804 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/2689 (bundle 2/1305988, 48KB, 68.60%) checksum 5b21fecd5307343460898c4daf3e19ce80ed8126
2026-08-07 02:16:04.804 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/2688 (bundle 2/1311002, 40KB, 68.73%) checksum adbaa34792e557706c0ec9b902194c7ec63e5a42
2026-08-07 02:16:04.804 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/2687 (bundle 2/1315407, 16KB, 68.78%) checksum bcd3abcd29c40699264c324bbef8ed42756b9adf
2026-08-07 02:16:04.804 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/2686 (bundle 2/1316706, 16KB, 68.83%) checksum f5fa637b2c491e582e7c0d0403753a41788b76f6
2026-08-07 02:16:04.804 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/2685 (bundle 2/1318588, 16KB, 68.88%) checksum 1e5d0c9c68c8ca339259d4bd0f2fbb8b85892901
2026-08-07 02:16:04.804 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/2684 (bundle 2/1318737, 16KB, 68.93%) checksum 1b033b4a128c79389e3bcc46baf72375971d53d7
2026-08-07 02:16:04.804 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/2683 (bundle 2/1318924, 8KB, 68.96%) checksum 06fcedc0598dd4406718ecec97b9284597a3b3d9
2026-08-07 02:16:04.804 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/2682 (bundle 2/1318981, 16KB, 69.01%) checksum a6e8d521f0a24f9a516404a1bf0f32e256e25ab4
2026-08-07 02:16:04.804 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/2681 (bundle 2/1319128, 16KB, 69.06%) checksum 70217922acf0bf45ddfef4b2079c001f26d8a576
2026-08-07 02:16:04.804 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/2680 (bundle 2/1319291, 8KB, 69.09%) checksum d24444037f7ac848bb5a916ca5f3faa101478bb3
2026-08-07 02:16:04.804 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/2679 (bundle 2/1319348, 16KB, 69.14%) checksum 7dc07413eac581bac2f06612e499e50a7777f5d8
2026-08-07 02:16:04.804 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/2678 (bundle 2/1320732, 16KB, 69.19%) checksum f6fc3dca46d2d88767d9b32203e1ed019c7edcf1
2026-08-07 02:16:04.804 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/2675 (bundle 2/1321896, 208KB, 69.87%) checksum c06eee19baae6e4312d5b239688e5aae3e5b766e
2026-08-07 02:16:04.804 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/2674 (bundle 2/1350301, 64KB, 70.08%) checksum 2cfe18e5b8c304a7c6a7202a342ec3cacdcc3cb6
2026-08-07 02:16:04.804 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/2673 (bundle 2/1357194, 80KB, 70.34%) checksum 31cac899705f4f00fe8631479fa1cc07cc5b64ee
2026-08-07 02:16:04.804 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/2670 (bundle 2/1366734, 16KB, 70.39%) checksum 079a6824d519a74a9a6628a89f0160920d39c7ae
2026-08-07 02:16:04.804 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/2669 (bundle 2/1367748, 16KB, 70.44%) checksum 1d1d87e607aa17d5de35d5c0df917653e1130931
2026-08-07 02:16:04.804 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/2668 (bundle 2/1369098, 16KB, 70.49%) checksum ba03a8319857a49c6aaf92885025ea41ac46af68
2026-08-07 02:16:04.804 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/2667 (bundle 2/1370293, 16KB, 70.54%) checksum 2d284f2dbe8b334367cf4bde8c2d0f8e6a0ad29a
2026-08-07 02:16:04.804 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/2666 (bundle 2/1371107, 16KB, 70.60%) checksum 6ee072ce3c16fb8c15f4c6263cb1759b990476b4
2026-08-07 02:16:04.804 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/2665 (bundle 2/1371617, 16KB, 70.65%) checksum 5a316861c73c1a0934e634bedab671b06361d75d
2026-08-07 02:16:04.804 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/2664 (bundle 2/1373651, 16KB, 70.70%) checksum 4ed3907bd16d107ad45cb7a84d686d30b02699fc
2026-08-07 02:16:04.804 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/2663 (bundle 2/1375449, 40KB, 70.83%) checksum d2c441d66f7956cef5fddb299bcffda0985a7176
2026-08-07 02:16:04.804 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/2662 (bundle 2/1381260, 32KB, 70.93%) checksum cff8ff65c54c6604bdf09ea07e9d2dfdcc8027a3
2026-08-07 02:16:04.804 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/2661 (bundle 2/1384269, 16KB, 70.99%) checksum cd63bd4c5dd220e1a05d9b7c66f63434b897043c
2026-08-07 02:16:04.804 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/2660 (bundle 2/1385949, 16KB, 71.04%) checksum 07d35843a1bc2ea628a3a17994e5aaabdda7f669
2026-08-07 02:16:04.804 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/2659 (bundle 2/1387583, 88KB, 71.32%) checksum 95bfdde6b5bbe78584683c285192b57ccbb466f2
2026-08-07 02:16:04.804 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/2658 (bundle 2/1403452, 120KB, 71.71%) checksum 7c7f0c185537248f31b6e586cf55ae83174128af
2026-08-07 02:16:04.804 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/2657 (bundle 2/1432767, 8KB, 71.74%) checksum ac41af60b9087855fa643a1312589504304474ab
2026-08-07 02:16:04.804 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/2656 (bundle 2/1432824, 8KB, 71.77%) checksum 28ce5d9a5703e9e4c721e6eb517decec4fd50700
2026-08-07 02:16:04.804 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/2655 (bundle 2/1432881, 40KB, 71.90%) checksum 8e5747528ce8ef29ed26129793686d050edf1aeb
2026-08-07 02:16:04.804 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/2654 (bundle 2/1437012, 48KB, 72.05%) checksum a1a286bf516c7fa529f9e7cacba8f61b5f5e534e
2026-08-07 02:16:04.804 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/2653 (bundle 2/1442540, 48KB, 72.21%) checksum 555e04eac3b55dc1531275e94161b6c1d9ec62d2
2026-08-07 02:16:04.804 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/2652 (bundle 2/1447648, 16KB, 72.26%) checksum d74f65b43320e968c2b0b9e1a202ea8332a2a8e7
2026-08-07 02:16:04.804 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/2651 (bundle 2/1447818, 16KB, 72.31%) checksum d0c5f08895f81907349e9ec9c543107c54da89a4
2026-08-07 02:16:04.804 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/2650 (bundle 2/1448006, 16KB, 72.36%) checksum 20d362c1f4a817ab2215f5795a3a972555a58ce2
2026-08-07 02:16:04.804 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/2619_vm (bundle 2/1449273, 8KB, 72.39%) checksum cd7a6034f66d614c539b5c59dfd93925f1c23026
2026-08-07 02:16:04.804 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/2619_fsm (bundle 2/1449317, 24KB, 72.47%) checksum 6f8a2209e4318799d065a983f9fb80d95531b61f
2026-08-07 02:16:04.804 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/2619 (bundle 2/1449509, 160KB, 72.99%) checksum 156398811ede74e8bae8d29f285e69bc78e281e2
2026-08-07 02:16:04.804 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/2618_vm (bundle 2/1499665, 8KB, 73.01%) checksum ecfcaf566c17c0ac21a43feb1fd0300c40fa75d9
2026-08-07 02:16:04.804 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/2618_fsm (bundle 2/1499710, 24KB, 73.09%) checksum 9a7b894b2d4d5442fd91e728a12ffcef5ee1e40e
2026-08-07 02:16:04.804 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/2618 (bundle 2/1499896, 112KB, 73.45%) checksum 4ee299c7362ff8391b90110e0c8de1dbe6c1d61f
2026-08-07 02:16:04.804 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/2617_vm (bundle 2/1537157, 8KB, 73.48%) checksum a7e00e516b3822ee455b79db598c7e55cb1d8210
2026-08-07 02:16:04.804 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/2617_fsm (bundle 2/1537202, 24KB, 73.56%) checksum 3380b846c2c3145b28aab6a71c54c3bbe01b5d85
2026-08-07 02:16:04.804 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/2617 (bundle 2/1537380, 112KB, 73.92%) checksum 3e7291d626e3c96e42ed9a1242fe5b6d7bc52634
2026-08-07 02:16:04.804 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/2616_vm (bundle 2/1549585, 8KB, 73.95%) checksum 8d839ed5a5018fed8d6e946f40b7cae15aad830f
2026-08-07 02:16:04.804 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/2616_fsm (bundle 2/1549627, 24KB, 74.02%) checksum e883c3355c47a092bd6ded8a07cfca38f14c078b
2026-08-07 02:16:04.804 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/2616 (bundle 2/1549786, 24KB, 74.10%) checksum 7132e7a6e52783cc5a915ec4736d87a4942b1640
2026-08-07 02:16:04.804 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/2615_vm (bundle 2/1552616, 8KB, 74.13%) checksum 2bba350ae6d8f08e229d2454d703db195fe183bd
2026-08-07 02:16:04.804 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/2615_fsm (bundle 2/1552658, 24KB, 74.21%) checksum bd37d17927ad5ec289762c702b466ada1c9279a0
2026-08-07 02:16:04.804 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/2615 (bundle 2/1552803, 8KB, 74.23%) checksum 8879c4621ff37b608213d2ddd8036b555b125229
2026-08-07 02:16:04.804 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/2612_vm (bundle 2/1553041, 8KB, 74.26%) checksum c723d0b226200047fd526de8b902f6d04832b973
2026-08-07 02:16:04.804 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/2612_fsm (bundle 2/1553083, 24KB, 74.34%) checksum 76ffa5246189e9944f83c5d47e4a24f6106ea6ac
2026-08-07 02:16:04.804 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/2612 (bundle 2/1553228, 8KB, 74.36%) checksum 557b32fdec037f2a267bf89a74af7bc580192290
2026-08-07 02:16:04.804 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/2610_vm (bundle 2/1553385, 8KB, 74.39%) checksum b55a3fea5812d1248e0dc56867ffe6df1c3c0959
2026-08-07 02:16:04.804 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/2610_fsm (bundle 2/1553427, 24KB, 74.47%) checksum 9d1753aef6e95f1e1649079f0ed50160386346cd
2026-08-07 02:16:04.804 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/2610 (bundle 2/1553587, 32KB, 74.57%) checksum eaa868c8eddb435a3a2023205fea3eb4feee33c8
2026-08-07 02:16:04.804 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/2609_vm (bundle 2/1556799, 8KB, 74.60%) checksum be2fa528c0f2f2b0a0d7411756a92cf98da90c1e
2026-08-07 02:16:04.804 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/2609_fsm (bundle 2/1556843, 24KB, 74.67%) checksum 8810aa4f1ca0e6c5e13e4bb9a74d3d5a8035a8e5
2026-08-07 02:16:04.804 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/2609 (bundle 2/1557051, 352KB, 75.82%) checksum d370edc30da2a2a383eaca1e9bc1965017376a37
2026-08-07 02:16:04.804 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/2608_vm (bundle 2/1630901, 8KB, 75.84%) checksum 696278e56f124b861067cc30061a1e2646950e10
2026-08-07 02:16:04.804 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/2608_fsm (bundle 2/1630946, 24KB, 75.92%) checksum c5aa1a29414cc80f3105a5b96cbc80bffac7e48d
2026-08-07 02:16:04.805 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/2608 (bundle 2/1631117, 104KB, 76.26%) checksum f085ae8c3f684219233029244be125e76f2bc91e
2026-08-07 02:16:04.805 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/2607_vm (bundle 2/1643240, 8KB, 76.28%) checksum 0ba4b368075435d86a8e883cca6652292a195ec5
2026-08-07 02:16:04.805 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/2607_fsm (bundle 2/1643282, 24KB, 76.36%) checksum 66ae81a790aa27524756e4a0e52f008d92d7c5e3
2026-08-07 02:16:04.805 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/2607 (bundle 2/1643433, 16KB, 76.41%) checksum c9f5aa95b550f5e6c9e5fbdfc0b289f9f655c7f9
2026-08-07 02:16:04.805 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/2606_vm (bundle 2/1645395, 8KB, 76.44%) checksum 99e3636b4d7af9dc6de2d8cf640dea0ef2e7f8a5
2026-08-07 02:16:04.805 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/2606_fsm (bundle 2/1645437, 24KB, 76.52%) checksum f34f4df351e8a97a22868313bf6edda620d9e17b
2026-08-07 02:16:04.805 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/2606 (bundle 2/1645596, 24KB, 76.60%) checksum 99f35e4ea8a26017ab4342d8a6599eb2ad23ff5b
2026-08-07 02:16:04.805 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/2605_vm (bundle 2/1649460, 8KB, 76.62%) checksum b69d48d375de2053270b1fff6ea896f6f81243a2
2026-08-07 02:16:04.805 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/2605_fsm (bundle 2/1649502, 24KB, 76.70%) checksum fed5dbac3d31eac1eff9f1d19a0dbae3f125cd26
2026-08-07 02:16:04.805 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/2605 (bundle 2/1649655, 16KB, 76.75%) checksum ac7994a8364e51164a56ebacb370fc7339712389
2026-08-07 02:16:04.805 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/2603_vm (bundle 2/1652116, 8KB, 76.78%) checksum 86aed3a6ca550e15d46d3517a93fc4d51ad0535c
2026-08-07 02:16:04.805 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/2603_fsm (bundle 2/1652159, 24KB, 76.86%) checksum df3dbf932dfb6c578d697b82a4e6c8e123a854de
2026-08-07 02:16:04.805 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/2603 (bundle 2/1652326, 40KB, 76.99%) checksum 979ffd3a0e42ee251a17021f3573e9bc33cb448d
2026-08-07 02:16:04.805 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/2602_vm (bundle 2/1658495, 8KB, 77.01%) checksum 20f00e904d346fc3edfc3a937f71d778883e88f2
2026-08-07 02:16:04.805 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/2602_fsm (bundle 2/1658538, 24KB, 77.09%) checksum 6ea3406f5c8b1f3d6629ad88b022c3775ddec22b
2026-08-07 02:16:04.805 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/2602 (bundle 2/1658705, 56KB, 77.27%) checksum f84c51433d2ad4f3e25fae1e10160ff665c239b8
2026-08-07 02:16:04.805 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/2601_vm (bundle 2/1666760, 8KB, 77.30%) checksum dd9303f7b3ecb3703cebd9c61c928ee0f690b7b9
2026-08-07 02:16:04.805 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/2601_fsm (bundle 2/1666802, 24KB, 77.38%) checksum 14eabf611940e704d2de8f26f208a4cab4f3950b
2026-08-07 02:16:04.805 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/2601 (bundle 2/1666947, 8KB, 77.40%) checksum 3931866433f09444c58f84b7235dc1dc5a80f0a4
2026-08-07 02:16:04.805 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/2600_vm (bundle 2/1667139, 8KB, 77.43%) checksum f2f31965a6405ba785b7f51859b30756281b71c4
2026-08-07 02:16:04.805 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/2600_fsm (bundle 2/1667181, 24KB, 77.51%) checksum ff2c96ed61411d9ed86f99379c8a9dec7d12e3be
2026-08-07 02:16:04.805 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/2600 (bundle 2/1667332, 16KB, 77.56%) checksum fe7fd76d1ae33b15713897de8e61e7dd2ab38ba8
2026-08-07 02:16:04.805 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/2579 (bundle 2/1669806, 16KB, 77.61%) checksum fa437dc7fe8466c2099c81657b0b35e2121e4959
2026-08-07 02:16:04.805 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/2337 (bundle 2/1670300, 8KB, 77.64%) checksum 7cdfa90eed84a033d1ae4fd2ae8fa8b2646f9d86
2026-08-07 02:16:04.805 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/2228 (bundle 2/1670357, 16KB, 77.69%) checksum 24d2bde7d2f1ed3e84b3d2fbf0f60637a9dde457
2026-08-07 02:16:04.805 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/2187 (bundle 2/1670515, 8KB, 77.71%) checksum 42c11e337bb0c30aaf7d246c8430d0aa3adb8115
2026-08-07 02:16:04.805 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/175 (bundle 2/1670572, 8KB, 77.74%) checksum ff238621245de4bb91c038e697042dbc15628a8d
2026-08-07 02:16:04.805 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/174 (bundle 2/1670629, 8KB, 77.77%) checksum db852111f393d18bb2f48bd1122aa63e9b5f68c1
2026-08-07 02:16:04.805 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/14335 (bundle 2/1670686, 8KB, 77.79%) checksum 9845ae7baa7a57eec140df7dbd6ecad0649d4a01
2026-08-07 02:16:04.805 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/14331_vm (bundle 2/1670743, 8KB, 77.82%) checksum 363c6c1562674fea89cfdf4a7ddab8c22bcd388a
2026-08-07 02:16:04.805 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/14331_fsm (bundle 2/1670785, 24KB, 77.89%) checksum daf82623eba2c44b34b164ac969bbe26c6a17827
2026-08-07 02:16:04.805 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/14331 (bundle 2/1670930, 8KB, 77.92%) checksum 5b4e0f86f6d1cb59f01d24ea1a04c079ecfc272d
2026-08-07 02:16:04.805 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/14330 (bundle 2/1671604, 8KB, 77.95%) checksum c78737100a49bf46c5cf6cdbd097dd5e4e0fe560
2026-08-07 02:16:04.805 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/14326_vm (bundle 2/1671661, 8KB, 77.97%) checksum b6ba61f0ecc5f81638a9eb317b777795ec924be0
2026-08-07 02:16:04.805 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/14326_fsm (bundle 2/1671703, 24KB, 78.05%) checksum 2df350e337a1db82fd2edc362d136c02b1af3151
2026-08-07 02:16:04.805 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/14326 (bundle 2/1671848, 8KB, 78.08%) checksum 5e8af9a9663c61bc1dbbc28dfb424ab9803006d5
2026-08-07 02:16:04.805 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/14325 (bundle 2/1672339, 8KB, 78.10%) checksum 1a765d5bf603bbd576083dc50d9a04dd56886e63
2026-08-07 02:16:04.805 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/14321_vm (bundle 2/1672396, 8KB, 78.13%) checksum 4191d5d6387417bfb98a16f4af245dc1f2ec1c7d
2026-08-07 02:16:04.805 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/14321_fsm (bundle 2/1672438, 24KB, 78.21%) checksum 2f288afc02628a254dfc5f3c1645c4acd7d59db5
2026-08-07 02:16:04.805 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/14321 (bundle 2/1672583, 8KB, 78.23%) checksum eff28b00891b206d1ea82c07cb072f8e6fd9a0fc
2026-08-07 02:16:04.805 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/14320 (bundle 2/1673174, 8KB, 78.26%) checksum c225a887fbb2067ad924c639d544c43a196c4755
2026-08-07 02:16:04.805 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/14316_vm (bundle 2/1673231, 8KB, 78.28%) checksum 25f902edf91dcdf0436c6a99749a7a6cad95b772
2026-08-07 02:16:04.805 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/14316_fsm (bundle 2/1673274, 24KB, 78.36%) checksum db6e362ba69966081bb2efe276f0b910ac800763
2026-08-07 02:16:04.805 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/14316 (bundle 2/1673440, 64KB, 78.57%) checksum da6433fc2d12dba8210ae6804dcba1b604061d48
2026-08-07 02:16:04.805 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/1259_vm (bundle 2/1689807, 8KB, 78.60%) checksum fc4f1043b61b6dfc3f5dac1927291dccf803940b
2026-08-07 02:16:04.805 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/1259_fsm (bundle 2/1689852, 24KB, 78.67%) checksum 38225fc4b4189cc8c421f2b953913d0276608c8c
2026-08-07 02:16:04.805 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/1259 (bundle 2/1690034, 112KB, 79.04%) checksum 9a306bf94d9160f4ee5dde4872629714a6d462a0
2026-08-07 02:16:04.805 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/1255_vm (bundle 2/1701509, 8KB, 79.06%) checksum 4af2989b26b16c53e6f683833acaf6855faf53dc
2026-08-07 02:16:04.805 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/1255_fsm (bundle 2/1701554, 24KB, 79.14%) checksum 9c8791977ad12fede6ef264854a71b76c0a15441
2026-08-07 02:16:04.805 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/1255 (bundle 2/1701872, 792KB, 81.71%) checksum 3b0a129671228c9468c38caa123de3725595677f
2026-08-07 02:16:04.805 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/1249_vm (bundle 2/1797275, 8KB, 81.74%) checksum 1844ecbfa8174095af5a07828c6a8776c8418c5e
2026-08-07 02:16:04.805 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/1249_fsm (bundle 2/1797320, 24KB, 81.82%) checksum cb6b2bbc4f257a9ec0362562e182f6100a227859
2026-08-07 02:16:04.805 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/1249 (bundle 2/1797540, 440KB, 83.25%) checksum 15aaabec98ce35924f0175ba7d029ccfabcf7dd0
2026-08-07 02:16:04.805 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/1247_vm (bundle 2/1827530, 8KB, 83.27%) checksum edba574c7357baeba4327e2ff0855d255257ee7b
2026-08-07 02:16:04.805 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/1247_fsm (bundle 2/1827575, 24KB, 83.35%) checksum fe238cbc5fc0d1e0c1b1664d0daa1925a664269f
2026-08-07 02:16:04.805 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/1247 (bundle 2/1827754, 120KB, 83.74%) checksum d85bf2311eb3dbd4aef995d2a259a21aa201a97b
2026-08-07 02:16:04.805 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/113 (bundle 2/1838708, 8KB, 83.76%) checksum 1cd643347b87a472ff001ae124e4b532ce998d2f
2026-08-07 02:16:04.805 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/4/112 (bundle 2/1838765, 8KB, 83.79%) checksum 2cbd5cf8fb22ef627eb539776c5ec7457bdb2890
2026-08-07 02:16:04.805 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/pg_filenode.map (bundle 2/1838822, 524B, 83.79%) checksum bbceb133f7ed635fbff25a30c6d029f9c1b5f9f4
2026-08-07 02:16:04.805 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/PG_VERSION (bundle 2/1838904, 3B, 83.79%) checksum ad48103e4fc71796e9708cafc43adeed0d1076b7
2026-08-07 02:16:04.805 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/828 (bundle 2/1838916, 8KB, 83.82%) checksum ca3e41f9deaab54a0ba8695ea5f83afb24e50190
2026-08-07 02:16:04.805 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/827 (bundle 2/1838973, 8KB, 83.84%) checksum 762b2cc0901b8bc3641c9658533dd9bf5ad9741c
2026-08-07 02:16:04.805 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/6239 (bundle 2/1839030, 8KB, 83.87%) checksum cf98743febad323ee9eb358251fbde85853b73c3
2026-08-07 02:16:04.805 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/6238 (bundle 2/1839087, 8KB, 83.90%) checksum 1d4155d43adf6440852dfbdc4e3110923ff51b15
2026-08-07 02:16:04.805 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/6229 (bundle 2/1839144, 8KB, 83.92%) checksum 10bc529a49b124ec4e913a426f83e1afe6ea6393
2026-08-07 02:16:04.805 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/6176 (bundle 2/1839201, 8KB, 83.95%) checksum 2865ab953309091d1283f46ba2c4d01a1adff223
2026-08-07 02:16:04.805 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/6117 (bundle 2/1839258, 8KB, 83.97%) checksum 8d35ff1d1e0d927452e465970f10538004eecbac
2026-08-07 02:16:04.805 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/6116 (bundle 2/1839315, 8KB, 84.00%) checksum 30cc1d5bb98ee699a35fd66e19a6b338a60d4359
2026-08-07 02:16:04.805 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/6113 (bundle 2/1839372, 8KB, 84.03%) checksum 3cae2d582d12f92ea8e6e83d0242fe61a30d54ba
2026-08-07 02:16:04.805 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/6112 (bundle 2/1839429, 8KB, 84.05%) checksum c0e21051611315e334bd44b595865930005de8b6
2026-08-07 02:16:04.805 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/6111 (bundle 2/1839486, 8KB, 84.08%) checksum 8b95a1529616a538b8a2820ec8f2c54d2fe3ae9d
2026-08-07 02:16:04.805 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/6110 (bundle 2/1839543, 8KB, 84.10%) checksum 072b289b74c095dd9b5545467f6826e73ce58ba3
2026-08-07 02:16:04.805 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/549 (bundle 2/1839600, 8KB, 84.13%) checksum d088f7c671a94155a2be276e5386c529b53bd434
2026-08-07 02:16:04.805 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/548 (bundle 2/1839657, 8KB, 84.16%) checksum 3172aa7cf0545bd03f10147264d22193e7c435bb
2026-08-07 02:16:04.805 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/5002 (bundle 2/1839714, 8KB, 84.18%) checksum 352a0a5027c122978a09c17ee84a89630adc7a59
2026-08-07 02:16:04.805 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/4174 (bundle 2/1839771, 8KB, 84.21%) checksum 650300088fb08e9fcdd1781d3aa65a16b12e20bb
2026-08-07 02:16:04.805 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/4172 (bundle 2/1839828, 8KB, 84.23%) checksum cd7609dd6646dc26c1ed2095c66f928a1390e051
2026-08-07 02:16:04.805 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/4170 (bundle 2/1839885, 8KB, 84.26%) checksum 0a94418a34d1bf090268a3deaf6c12781c09c3a1
2026-08-07 02:16:04.805 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/4168 (bundle 2/1839942, 8KB, 84.29%) checksum 03cb3fa0c38fc5face7d6e74b2a5e2f5d45bd851
2026-08-07 02:16:04.805 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/4166 (bundle 2/1839999, 8KB, 84.31%) checksum 5b520b3a06a6642a3b4c80963ca276c7e424722f
2026-08-07 02:16:04.805 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/4164 (bundle 2/1840056, 8KB, 84.34%) checksum fbdef8e4b35a8bcd620ad0dbe024debdf9f55d02
2026-08-07 02:16:04.805 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/4160 (bundle 2/1840113, 8KB, 84.36%) checksum 6ecb32e625a0fb31ae5584567c8c4e6cc86fca6a
2026-08-07 02:16:04.805 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/4158 (bundle 2/1840170, 8KB, 84.39%) checksum 9ce1692abd77ac1be81e00ab629899039b79337a
2026-08-07 02:16:04.805 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/4156 (bundle 2/1840227, 8KB, 84.42%) checksum 8f8309f9b6e1a3827b4b6bfa8a7ea74c4a71578f
2026-08-07 02:16:04.805 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/4154 (bundle 2/1840284, 8KB, 84.44%) checksum ceaf3d70517a48c3195b33a866cae1a6ae475544
2026-08-07 02:16:04.805 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/4152 (bundle 2/1840341, 8KB, 84.47%) checksum 7fe7f9718187d20ee270a60672a057d78b8888f0
2026-08-07 02:16:04.805 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/4150 (bundle 2/1840398, 8KB, 84.49%) checksum 12928920044f2fbf053a61d94cc4997d89172649
2026-08-07 02:16:04.805 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/4148 (bundle 2/1840455, 8KB, 84.52%) checksum cd020de740bf9e3054f814eb62bd5465485168c5
2026-08-07 02:16:04.805 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/4146 (bundle 2/1840512, 8KB, 84.55%) checksum f03a29deeaac474da866bea42756776682c30d5f
2026-08-07 02:16:04.805 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/4144 (bundle 2/1840569, 8KB, 84.57%) checksum f4b593aa46ac5d1a86b9b7b3f95b303e36780832
2026-08-07 02:16:04.805 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/3997 (bundle 2/1840626, 8KB, 84.60%) checksum e5458dff91a04574b06bc35554fbd5d6a30afc6d
2026-08-07 02:16:04.805 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/3767 (bundle 2/1840683, 16KB, 84.65%) checksum ec5397a797d3049e5671796df2727ca616aa5470
2026-08-07 02:16:04.805 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/3766 (bundle 2/1840837, 16KB, 84.70%) checksum 993116fc58097648f345244b73128170ad3b529b
2026-08-07 02:16:04.805 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/3764_vm (bundle 2/1841026, 8KB, 84.73%) checksum 11ab26a6db1a2d53b5a2c38f9c3d312d8d12dc75
2026-08-07 02:16:04.805 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/3764_fsm (bundle 2/1841068, 24KB, 84.81%) checksum 101caee5f2f3a2a738b7a6672466bc62345dd962
2026-08-07 02:16:04.806 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/3764 (bundle 2/1841213, 8KB, 84.83%) checksum 03d802f9f6d5f18ec952a1f884535d45f907ffb4
2026-08-07 02:16:04.806 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/3712 (bundle 2/1841395, 16KB, 84.88%) checksum 8739d1e86c63b9664c30def1716d0ab0b68986a4
2026-08-07 02:16:04.806 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/3609 (bundle 2/1841738, 32KB, 84.99%) checksum a52aeddacb08762d10c1605df71172927de45280
2026-08-07 02:16:04.806 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/3608 (bundle 2/1845146, 16KB, 85.04%) checksum efe23d086afd4e0426b6c240ec7690d712ab3b02
2026-08-07 02:16:04.806 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/3607 (bundle 2/1845628, 16KB, 85.09%) checksum b8207b4c55189d2e90abc912e361e7230330be22
2026-08-07 02:16:04.806 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/3606 (bundle 2/1845751, 16KB, 85.14%) checksum 38217d25b8640c96ec83b474bd94647a8a932d4c
2026-08-07 02:16:04.806 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/3605 (bundle 2/1845875, 16KB, 85.20%) checksum 37eb7a8c26b282db27099e7e4790134fc84b1334
2026-08-07 02:16:04.806 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/3604 (bundle 2/1846222, 16KB, 85.25%) checksum dcb28d4f0907b79208dd524bdacf3969db1023b6
2026-08-07 02:16:04.806 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/3603_vm (bundle 2/1846723, 8KB, 85.27%) checksum c47004345b07fcb57f8bd685edb521eeaf8853b6
2026-08-07 02:16:04.806 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/3603_fsm (bundle 2/1846765, 24KB, 85.35%) checksum 46b457ea5ab43f12f467a0550d3b757408edd1e1
2026-08-07 02:16:04.806 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/3603 (bundle 2/1846925, 24KB, 85.43%) checksum 5305c16d6b76e3277a73f2c66fe741771f3c506b
2026-08-07 02:16:04.806 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/3602_vm (bundle 2/1849406, 8KB, 85.45%) checksum c9e118f6984308b1ae1a6c32b12238ce83dc8222
2026-08-07 02:16:04.806 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/3602_fsm (bundle 2/1849448, 24KB, 85.53%) checksum 1309be9d2208e3734197f5c54159924e9996a09f
2026-08-07 02:16:04.806 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/3602 (bundle 2/1849593, 8KB, 85.56%) checksum c1881ed441a751112d22720ecc5ba8ad2b64521f
2026-08-07 02:16:04.806 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/3601_vm (bundle 2/1850165, 8KB, 85.58%) checksum 86945941ff3b74e4dae11649da388084e4d7ba02
2026-08-07 02:16:04.806 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/3601_fsm (bundle 2/1850207, 24KB, 85.66%) checksum c3aae04b3ef7159badac5ce355932c6e0bf63ccf
2026-08-07 02:16:04.806 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/3601 (bundle 2/1850352, 8KB, 85.69%) checksum 350e77f04093cbae6f6e58533f9d01c25b2d1d5e
2026-08-07 02:16:04.806 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/3600_vm (bundle 2/1850437, 8KB, 85.71%) checksum 25f078a30cac52b134ea93a62ddba56eeb9ee70b
2026-08-07 02:16:04.806 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/3600_fsm (bundle 2/1850479, 24KB, 85.79%) checksum af6905907bc0658999ef78947ce9033b9588e8de
2026-08-07 02:16:04.806 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/3600 (bundle 2/1850624, 8KB, 85.82%) checksum cc4d23b2f03d0a1bbe0caac36eef1184b1adc34e
2026-08-07 02:16:04.806 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/3599 (bundle 2/1851473, 8KB, 85.84%) checksum d154279d3aaef6168c71310ab2d616bed7dd56ca
2026-08-07 02:16:04.806 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/3597 (bundle 2/1851530, 8KB, 85.87%) checksum f3c0ce1d1eb37c68cfe15e56c085b9cd5f73af8f
2026-08-07 02:16:04.806 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/3575 (bundle 2/1851587, 8KB, 85.90%) checksum 9b53127b31b8f35da2c77e9e86ab7b26f9a82c6e
2026-08-07 02:16:04.806 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/3574 (bundle 2/1851644, 8KB, 85.92%) checksum f0716df7c6e493738cc74c9dbae3b5e7c78169ac
2026-08-07 02:16:04.806 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/3542 (bundle 2/1851701, 16KB, 85.97%) checksum cdda26b1bea2b27cf322cae50a66059af1ec5e96
2026-08-07 02:16:04.806 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/3541_vm (bundle 2/1851857, 8KB, 86.00%) checksum e2492e003665a14773bacd1d6b42cda18beca2fc
2026-08-07 02:16:04.806 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/3541_fsm (bundle 2/1851899, 24KB, 86.08%) checksum 03d20a6a9eb8f7fecf298c1062b8aadb3130a88f
2026-08-07 02:16:04.806 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/3541 (bundle 2/1852044, 8KB, 86.10%) checksum fc3e49c265d5592f4e878662e5524dfd397725bc
2026-08-07 02:16:04.806 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/3534 (bundle 2/1852234, 8KB, 86.13%) checksum 741b2bebaea4e216248e9a8d83a25cc9c47bff6d
2026-08-07 02:16:04.806 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/3503 (bundle 2/1852290, 8KB, 86.16%) checksum 56c594e64f92ee2486ebebff877072486dd26b4d
2026-08-07 02:16:04.806 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/3502 (bundle 2/1852347, 8KB, 86.18%) checksum d616b3e9fd72993c3948a145b1e18a123cc5dc60
2026-08-07 02:16:04.806 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/3468 (bundle 2/1852404, 8KB, 86.21%) checksum 4f4791e2213f33d1ea9c0a7573348d909efd78a2
2026-08-07 02:16:04.806 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/3467 (bundle 2/1852461, 8KB, 86.23%) checksum d48b2aeeb5b7ad11e259ede482fbf33adf3fe77d
2026-08-07 02:16:04.806 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/3456_vm (bundle 2/1852518, 8KB, 86.26%) checksum 7692c705feee57ba1506a73c6d136f709eafaed0
2026-08-07 02:16:04.806 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/3456_fsm (bundle 2/1852563, 24KB, 86.34%) checksum 2094e9d05dca10499034b8d9e454d4260367a3d5
2026-08-07 02:16:04.806 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/3456 (bundle 2/1852759, 248KB, 87.14%) checksum 2d17eab42ca73460b824076d02280b2db383d983
2026-08-07 02:16:04.806 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/3455 (bundle 2/1885290, 16KB, 87.20%) checksum 4a144448cfca33dfa8c908218217bb6450186ff2
2026-08-07 02:16:04.806 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/3440 (bundle 2/1887620, 8KB, 87.22%) checksum b67892c3f2916722a58d47e4086fe70b8ffbe33f
2026-08-07 02:16:04.806 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/3433 (bundle 2/1887677, 8KB, 87.25%) checksum 14fd8dbe581dd8cb88a9642eb7af83b20c0dca99
2026-08-07 02:16:04.806 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/3431 (bundle 2/1887734, 8KB, 87.27%) checksum 9166e1a07403d20dfe27638d298792aa5c017f1b
2026-08-07 02:16:04.806 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/3395 (bundle 2/1887791, 16KB, 87.32%) checksum 4609d5641ccd9b14f6bba5cae8600051bc6a8d18
2026-08-07 02:16:04.806 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/3394_vm (bundle 2/1889491, 8KB, 87.35%) checksum 30a9ab0a89ba50c81aaef2905be71c35f9a90b8b
2026-08-07 02:16:04.806 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/3394_fsm (bundle 2/1889533, 24KB, 87.43%) checksum 61705f5f6e4e8b4384e6d3dbff14bba4b56c97c6
2026-08-07 02:16:04.806 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/3394 (bundle 2/1889692, 24KB, 87.51%) checksum dc644c687e9be599283d331a50ffe4b4e09d485d
2026-08-07 02:16:04.806 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/3380 (bundle 2/1891666, 8KB, 87.53%) checksum 08505e4e99c4cb835c2e8377768000626ade8de8
2026-08-07 02:16:04.806 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/3379 (bundle 2/1891723, 8KB, 87.56%) checksum 3374fa12d4fca104d1eaa6c4a2240c8a3ba4c199
2026-08-07 02:16:04.806 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/3351 (bundle 2/1891780, 8KB, 87.58%) checksum d103621802592e04f102716371ded133f5d02c6c
2026-08-07 02:16:04.806 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/3258 (bundle 2/1891837, 8KB, 87.61%) checksum 27584ade854ca98f1d253ce26231a92588aacea1
2026-08-07 02:16:04.806 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/3257 (bundle 2/1891894, 8KB, 87.64%) checksum 474ebc18e592918e9d6d811c38dd47790335dd2a
2026-08-07 02:16:04.806 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/3164 (bundle 2/1891951, 104KB, 87.97%) checksum 490e4fb1cdff80a9a8817be36eef72e03d4c96c0
2026-08-07 02:16:04.806 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/3119 (bundle 2/1908499, 8KB, 88.00%) checksum a94ea56cacdc266f85c2878596b7f8cfd0e605ac
2026-08-07 02:16:04.806 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/3085 (bundle 2/1908556, 56KB, 88.18%) checksum c29903f3d0abd2397b650999c7d61297d7a76fcc
2026-08-07 02:16:04.806 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/3081 (bundle 2/1915321, 16KB, 88.23%) checksum f15ffcbba885e06b5488e38ab1a9517ca15e9def
2026-08-07 02:16:04.806 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/3080 (bundle 2/1915443, 16KB, 88.29%) checksum 9575c9ff586f8397b744f946248b20023f0ae343
2026-08-07 02:16:04.806 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/3079_vm (bundle 2/1915565, 8KB, 88.31%) checksum 5350e25e4cb983299915a836d0995a4ab86e9b99
2026-08-07 02:16:04.806 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/3079_fsm (bundle 2/1915607, 24KB, 88.39%) checksum 985a7c35efe48e95d02ff6de878b10849fe3fb97
2026-08-07 02:16:04.806 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/3079 (bundle 2/1915752, 8KB, 88.42%) checksum 885cd3950dddc84cd190c9c3bad79cdf5aaca196
2026-08-07 02:16:04.806 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/2996 (bundle 2/1915837, 8KB, 88.44%) checksum 43a935b44c2ec59340120d06ff377d30283426de
2026-08-07 02:16:04.806 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/2839 (bundle 2/1915894, 16KB, 88.49%) checksum e94ea7b8f21ceed266a3f39f124ef173e53449fd
2026-08-07 02:16:04.806 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/2838_vm (bundle 2/1917849, 8KB, 88.52%) checksum 78ca4281a7ad09da1da2be582999c3d7252375c1
2026-08-07 02:16:04.806 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/2838_fsm (bundle 2/1917894, 24KB, 88.60%) checksum fe80df7cefcb4185d6b1540955095322ae909b8a
2026-08-07 02:16:04.806 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/2838 (bundle 2/1918158, 504KB, 90.23%) checksum a41b7976fc5836deeaaf9c75a7db92c445f8152c
2026-08-07 02:16:04.806 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/2837 (bundle 2/2113064, 16KB, 90.29%) checksum 0cf3f390e2a154f87b2443a1877304928439611a
2026-08-07 02:16:04.806 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/2836_vm (bundle 2/2113203, 8KB, 90.31%) checksum 76e75fd256a04d76ef1571f2393dc5275f716bf2
2026-08-07 02:16:04.806 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/2836_fsm (bundle 2/2113245, 24KB, 90.39%) checksum d3d338ca373b87065ce8c8bb4e8c6f6a4eaf8b23
2026-08-07 02:16:04.806 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/2836 (bundle 2/2113391, 8KB, 90.42%) checksum 9b04d627031237828203c115e58fb211befb4890
2026-08-07 02:16:04.806 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/2835 (bundle 2/2117324, 8KB, 90.44%) checksum 50df7e5f60dfb011a3924b775a0aa1d667404a22
2026-08-07 02:16:04.806 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/2833 (bundle 2/2117381, 8KB, 90.47%) checksum 474113d7332fc70332fe1a46c5f989a3887b9fc6
2026-08-07 02:16:04.806 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/2831 (bundle 2/2117438, 8KB, 90.49%) checksum 6121e91f696d25a77ec87b3af34c1eb129a61736
2026-08-07 02:16:04.806 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/2757 (bundle 2/2117495, 32KB, 90.60%) checksum 59457502b5dfb8ba9c45c6ae0681fdfba497b80c
2026-08-07 02:16:04.806 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/2756 (bundle 2/2121060, 40KB, 90.73%) checksum 41c704a1baa22cf5667e3359122bcbc07fad01f9
2026-08-07 02:16:04.806 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/2755 (bundle 2/2125572, 16KB, 90.78%) checksum 35ea7a595557b84c345f6009a6dde86fa56c5096
2026-08-07 02:16:04.806 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/2754 (bundle 2/2126757, 16KB, 90.83%) checksum 528e684a6b50b06ed5223fa98b071a94effa5727
2026-08-07 02:16:04.806 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/2753_vm (bundle 2/2128359, 8KB, 90.86%) checksum b4156a90ff1ee1a6fb9e13d805c9027809fe1888
2026-08-07 02:16:04.806 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/2753_fsm (bundle 2/2128401, 24KB, 90.94%) checksum 2d22872ac0b47cbc97485d39ff32c07127f405f6
2026-08-07 02:16:04.806 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/2753 (bundle 2/2128553, 16KB, 90.99%) checksum 2ffd530df26b6ad03b61dfed58548a0b644e26aa
2026-08-07 02:16:04.806 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/2704 (bundle 2/2130362, 40KB, 91.12%) checksum 27e7c86035246c5890a5e86fad6cc141b9d65d71
2026-08-07 02:16:04.806 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/2703 (bundle 2/2137508, 32KB, 91.22%) checksum 77eabe8e69107a48bc2083ef791b3c344cf7016a
2026-08-07 02:16:04.806 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/2702 (bundle 2/2141482, 8KB, 91.25%) checksum ab6c8daa0a3ec28b3aec8d0c48fe02f578a67428
2026-08-07 02:16:04.806 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/2701 (bundle 2/2141539, 8KB, 91.27%) checksum 58cd3814e075dd7e3f585dc0b965ef66110215e8
2026-08-07 02:16:04.806 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/2699 (bundle 2/2141596, 8KB, 91.30%) checksum 219efe1bf2acd6241f8fff69e8610818e877ddd3
2026-08-07 02:16:04.806 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/2693 (bundle 2/2141653, 16KB, 91.35%) checksum 1f4cba1f1e0660cc2a1115ce327712a189212260
2026-08-07 02:16:04.806 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/2692 (bundle 2/2142781, 16KB, 91.40%) checksum 44ca3cd2adb33e3406bf2079b1cf563839553793
2026-08-07 02:16:04.806 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/2691 (bundle 2/2143822, 256KB, 92.23%) checksum 4173f9ad2aaf4ca298192349b5ced749224f2a88
2026-08-07 02:16:04.806 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/2690 (bundle 2/2188396, 96KB, 92.55%) checksum b26cbdb5214ccd9907b809834999130368c504f1
2026-08-07 02:16:04.806 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/2689 (bundle 2/2203758, 48KB, 92.70%) checksum 5b21fecd5307343460898c4daf3e19ce80ed8126
2026-08-07 02:16:04.806 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/2688 (bundle 2/2208773, 40KB, 92.83%) checksum adbaa34792e557706c0ec9b902194c7ec63e5a42
2026-08-07 02:16:04.806 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/2687 (bundle 2/2213179, 16KB, 92.88%) checksum bcd3abcd29c40699264c324bbef8ed42756b9adf
2026-08-07 02:16:04.806 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/2686 (bundle 2/2214479, 16KB, 92.94%) checksum f5fa637b2c491e582e7c0d0403753a41788b76f6
2026-08-07 02:16:04.807 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/2685 (bundle 2/2216362, 16KB, 92.99%) checksum 1e5d0c9c68c8ca339259d4bd0f2fbb8b85892901
2026-08-07 02:16:04.807 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/2684 (bundle 2/2216512, 16KB, 93.04%) checksum 1b033b4a128c79389e3bcc46baf72375971d53d7
2026-08-07 02:16:04.807 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/2683 (bundle 2/2216700, 8KB, 93.07%) checksum 06fcedc0598dd4406718ecec97b9284597a3b3d9
2026-08-07 02:16:04.807 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/2682 (bundle 2/2216757, 16KB, 93.12%) checksum a6e8d521f0a24f9a516404a1bf0f32e256e25ab4
2026-08-07 02:16:04.807 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/2681 (bundle 2/2216905, 16KB, 93.17%) checksum 70217922acf0bf45ddfef4b2079c001f26d8a576
2026-08-07 02:16:04.807 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/2680 (bundle 2/2217069, 8KB, 93.19%) checksum d24444037f7ac848bb5a916ca5f3faa101478bb3
2026-08-07 02:16:04.807 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/2679 (bundle 2/2217126, 16KB, 93.25%) checksum 7dc07413eac581bac2f06612e499e50a7777f5d8
2026-08-07 02:16:04.807 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/2678 (bundle 2/2218511, 16KB, 93.30%) checksum f6fc3dca46d2d88767d9b32203e1ed019c7edcf1
2026-08-07 02:16:04.807 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/2675 (bundle 2/2219676, 208KB, 93.97%) checksum c06eee19baae6e4312d5b239688e5aae3e5b766e
2026-08-07 02:16:04.807 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/2674 (bundle 2/2248082, 64KB, 94.18%) checksum 2cfe18e5b8c304a7c6a7202a342ec3cacdcc3cb6
2026-08-07 02:16:04.807 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/2673 (bundle 2/2254976, 80KB, 94.44%) checksum 31cac899705f4f00fe8631479fa1cc07cc5b64ee
2026-08-07 02:16:04.807 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/2670 (bundle 2/2264517, 16KB, 94.49%) checksum 079a6824d519a74a9a6628a89f0160920d39c7ae
2026-08-07 02:16:04.807 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/2669 (bundle 2/2265532, 16KB, 94.55%) checksum 1d1d87e607aa17d5de35d5c0df917653e1130931
2026-08-07 02:16:04.807 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/2668 (bundle 2/2266883, 16KB, 94.60%) checksum ba03a8319857a49c6aaf92885025ea41ac46af68
2026-08-07 02:16:04.807 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/2667 (bundle 2/2268079, 16KB, 94.65%) checksum 2d284f2dbe8b334367cf4bde8c2d0f8e6a0ad29a
2026-08-07 02:16:04.807 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/2666 (bundle 2/2268894, 16KB, 94.70%) checksum 6ee072ce3c16fb8c15f4c6263cb1759b990476b4
2026-08-07 02:16:04.807 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/2665 (bundle 2/2269405, 16KB, 94.75%) checksum 5a316861c73c1a0934e634bedab671b06361d75d
2026-08-07 02:16:04.807 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/2664 (bundle 2/2271440, 16KB, 94.81%) checksum 4ed3907bd16d107ad45cb7a84d686d30b02699fc
2026-08-07 02:16:04.807 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/2663 (bundle 2/2273239, 40KB, 94.94%) checksum d2c441d66f7956cef5fddb299bcffda0985a7176
2026-08-07 02:16:04.807 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/2662 (bundle 2/2279051, 32KB, 95.04%) checksum cff8ff65c54c6604bdf09ea07e9d2dfdcc8027a3
2026-08-07 02:16:04.807 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/2661 (bundle 2/2282061, 16KB, 95.09%) checksum cd63bd4c5dd220e1a05d9b7c66f63434b897043c
2026-08-07 02:16:04.807 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/2660 (bundle 2/2283742, 16KB, 95.14%) checksum 07d35843a1bc2ea628a3a17994e5aaabdda7f669
2026-08-07 02:16:04.807 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/2659 (bundle 2/2285377, 88KB, 95.43%) checksum 95bfdde6b5bbe78584683c285192b57ccbb466f2
2026-08-07 02:16:04.807 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/2658 (bundle 2/2301247, 120KB, 95.82%) checksum 7c7f0c185537248f31b6e586cf55ae83174128af
2026-08-07 02:16:04.807 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/2657 (bundle 2/2330563, 8KB, 95.84%) checksum ac41af60b9087855fa643a1312589504304474ab
2026-08-07 02:16:04.807 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/2656 (bundle 2/2330620, 8KB, 95.87%) checksum 28ce5d9a5703e9e4c721e6eb517decec4fd50700
2026-08-07 02:16:04.807 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/2655 (bundle 2/2330677, 40KB, 96.00%) checksum 8e5747528ce8ef29ed26129793686d050edf1aeb
2026-08-07 02:16:04.807 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/2654 (bundle 2/2334809, 48KB, 96.16%) checksum a1a286bf516c7fa529f9e7cacba8f61b5f5e534e
2026-08-07 02:16:04.807 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/2653 (bundle 2/2340338, 48KB, 96.31%) checksum 555e04eac3b55dc1531275e94161b6c1d9ec62d2
2026-08-07 02:16:04.807 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/2652 (bundle 2/2345447, 16KB, 96.36%) checksum d74f65b43320e968c2b0b9e1a202ea8332a2a8e7
2026-08-07 02:16:04.807 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/2651 (bundle 2/2345618, 16KB, 96.42%) checksum d0c5f08895f81907349e9ec9c543107c54da89a4
2026-08-07 02:16:04.807 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/2650 (bundle 2/2345807, 16KB, 96.47%) checksum 20d362c1f4a817ab2215f5795a3a972555a58ce2
2026-08-07 02:16:04.807 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/2618_vm (bundle 2/2347075, 8KB, 96.49%) checksum ecfcaf566c17c0ac21a43feb1fd0300c40fa75d9
2026-08-07 02:16:04.807 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/2618_fsm (bundle 2/2347120, 24KB, 96.57%) checksum 9a7b894b2d4d5442fd91e728a12ffcef5ee1e40e
2026-08-07 02:16:04.807 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/2618 (bundle 2/2347307, 112KB, 96.94%) checksum 4ee299c7362ff8391b90110e0c8de1dbe6c1d61f
2026-08-07 02:16:04.807 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/2617_vm (bundle 2/2384569, 8KB, 96.96%) checksum a7e00e516b3822ee455b79db598c7e55cb1d8210
2026-08-07 02:16:04.807 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/2617_fsm (bundle 2/2384614, 24KB, 97.04%) checksum 3380b846c2c3145b28aab6a71c54c3bbe01b5d85
2026-08-07 02:16:04.807 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/2617 (bundle 2/2384793, 112KB, 97.40%) checksum 3e7291d626e3c96e42ed9a1242fe5b6d7bc52634
2026-08-07 02:16:04.807 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/2616_vm (bundle 2/2396999, 8KB, 97.43%) checksum 8d839ed5a5018fed8d6e946f40b7cae15aad830f
2026-08-07 02:16:04.807 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/2616_fsm (bundle 2/2397041, 24KB, 97.51%) checksum e883c3355c47a092bd6ded8a07cfca38f14c078b
2026-08-07 02:16:04.807 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/2616 (bundle 2/2397201, 24KB, 97.58%) checksum 7132e7a6e52783cc5a915ec4736d87a4942b1640
2026-08-07 02:16:04.807 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/2615_vm (bundle 2/2400032, 8KB, 97.61%) checksum 2bba350ae6d8f08e229d2454d703db195fe183bd
2026-08-07 02:16:04.807 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/2615_fsm (bundle 2/2400074, 24KB, 97.69%) checksum bd37d17927ad5ec289762c702b466ada1c9279a0
2026-08-07 02:16:04.807 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/2615 (bundle 2/2400220, 8KB, 97.71%) checksum 8879c4621ff37b608213d2ddd8036b555b125229
2026-08-07 02:16:04.807 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/2612_vm (bundle 2/2400458, 8KB, 97.74%) checksum c723d0b226200047fd526de8b902f6d04832b973
2026-08-07 02:16:04.807 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/2612_fsm (bundle 2/2400500, 24KB, 97.82%) checksum 76ffa5246189e9944f83c5d47e4a24f6106ea6ac
2026-08-07 02:16:04.807 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/2612 (bundle 2/2400646, 8KB, 97.84%) checksum 557b32fdec037f2a267bf89a74af7bc580192290
2026-08-07 02:16:04.807 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/2610_vm (bundle 2/2400803, 8KB, 97.87%) checksum b55a3fea5812d1248e0dc56867ffe6df1c3c0959
2026-08-07 02:16:04.807 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/2610_fsm (bundle 2/2400845, 24KB, 97.95%) checksum 9d1753aef6e95f1e1649079f0ed50160386346cd
2026-08-07 02:16:04.807 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/2610 (bundle 2/2401006, 32KB, 98.05%) checksum eaa868c8eddb435a3a2023205fea3eb4feee33c8
2026-08-07 02:16:04.807 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/2609_vm (bundle 2/2404219, 8KB, 98.08%) checksum be2fa528c0f2f2b0a0d7411756a92cf98da90c1e
2026-08-07 02:16:04.807 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/2609_fsm (bundle 2/2404263, 24KB, 98.16%) checksum 8810aa4f1ca0e6c5e13e4bb9a74d3d5a8035a8e5
2026-08-07 02:16:04.807 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/2609 (bundle 2/2404472, 352KB, 99.30%) checksum d370edc30da2a2a383eaca1e9bc1965017376a37
2026-08-07 02:16:04.807 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/2608_vm (bundle 2/2478323, 8KB, 99.32%) checksum 696278e56f124b861067cc30061a1e2646950e10
2026-08-07 02:16:04.807 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/2608_fsm (bundle 2/2478368, 24KB, 99.40%) checksum c5aa1a29414cc80f3105a5b96cbc80bffac7e48d
2026-08-07 02:16:04.807 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/2608 (bundle 2/2478540, 104KB, 99.74%) checksum f085ae8c3f684219233029244be125e76f2bc91e
2026-08-07 02:16:04.807 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/2607_vm (bundle 2/2490664, 8KB, 99.77%) checksum 0ba4b368075435d86a8e883cca6652292a195ec5
2026-08-07 02:16:04.807 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/2607_fsm (bundle 2/2490706, 24KB, 99.84%) checksum 66ae81a790aa27524756e4a0e52f008d92d7c5e3
2026-08-07 02:16:04.807 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/2607 (bundle 2/2490858, 16KB, 99.90%) checksum c9f5aa95b550f5e6c9e5fbdfc0b289f9f655c7f9
2026-08-07 02:16:04.807 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/2606_vm (bundle 2/2492821, 8KB, 99.92%) checksum 99e3636b4d7af9dc6de2d8cf640dea0ef2e7f8a5
2026-08-07 02:16:04.807 P02 DETAIL: backup file 10.10.3.160:/data/pgdata/base/1/2606_fsm (bundle 2/2492863, 24KB, 100.00%) checksum f34f4df351e8a97a22868313bf6edda620d9e17b
2026-08-07 02:16:04.910 P00   INFO: execute backup stop and wait for all WAL segments to archive
2026-08-07 02:16:04.926 P00   INFO: backup stop archive = 000000010000000000000021, lsn = 0/21000050
2026-08-07 02:16:04.930 P00 DETAIL: wrote 'backup_label' file returned from backup stop function
2026-08-07 02:16:04.931 P00   INFO: check archive for segment(s) 000000010000000000000020:000000010000000000000021
2026-08-07 02:16:04.957 P00 DETAIL: copy segment 000000010000000000000020 to backup
2026-08-07 02:16:05.087 P00 DETAIL: copy segment 000000010000000000000021 to backup
2026-08-07 02:16:05.208 P00   INFO: new backup label = 20260807-021601F
2026-08-07 02:16:05.239 P00   INFO: full backup size = 62.1MB, file total = 1271
2026-08-07 02:16:05.239 P00 DETAIL: statistics: {"http.client":{"total":2},"http.request":{"total":29},"http.session":{"total":2},"socket.client":{"total":2},"socket.session":{"total":2}}
2026-08-07 02:16:05.239 P00   INFO: backup command end: completed successfully (2969ms)
2026-08-07 02:16:05.240 P00   INFO: expire command begin 2.59.0: --cmd-ssh=/usr/bin/ssh --exec-id=46057-67971b13 --log-level-console=detail --log-level-file=detail --log-path=/backup/a1 --log-subprocess --repo1-path=/backup/a1 --repo1-retention-archive=14 --repo1-retention-diff=4 --repo1-retention-full=3 --repo1-s3-bucket=repo2 --repo1-s3-endpoint=http://10.10.3.69:9000 --repo1-s3-key=<redacted> --repo1-s3-key-secret=<redacted> --repo1-s3-region=us-east-1 --repo1-s3-uri-style=path --no-repo1-storage-verify-tls --repo1-type=s3 --stanza=cluster1
2026-08-07 02:16:05.243 P00 DETAIL: statistics: {"http.client":{"total":2},"http.request":{"total":34},"http.session":{"total":2},"socket.client":{"total":2},"socket.session":{"total":2}}
2026-08-07 02:16:05.243 P00   INFO: expire command end: completed successfully (4ms)
  ✔ 首次全量备份完成

  ┌─────────────────────────────────┐
  │  postgres 段 · pgbackrest info  │
  └─────────────────────────────────┘
stanza: cluster1
    status: ok
    cipher: none

    db (current)
        wal archive min/max (17): 00000001000000000000001F/000000010000000000000021

        full backup: 20260807-021601F
            timestamp start/stop: 2026-08-07 02:16:01+08 / 2026-08-07 02:16:03+08
            wal start/stop: 000000010000000000000020 / 000000010000000000000021
            database size: 62.1MB, database backup size: 62.1MB
            repo1: backup size: 3.5MB

  ✔ postgres 段全部完成
  ✔ postgres 段完成
  ████████████████████████░░░░░░  80%  已完成 5/7 阶段

  ┌────────────┐
  │  安装完成  │
  └────────────┘
  ████████████████████████░░░░░░  80%  进入第 6/7 阶段

  ╔═══════════════════════════════════════════════════════════╗
  ║ pgBackRest 集群配置完成 (备份主机)                        ║
  ╠═══════════════════════════════════════════════════════════╣
  ║ 安装目录 : /home/postgres/app/postgresql/bin/pgbackrest   ║
  ║ 配置文件 : /etc/pgbackrest/pgbackrest.conf                ║
  ║ 备份仓库 : /backup/a1                                     ║
  ║ WAL 仓库 : /backup/a1/archive/cluster1/                   ║
  ║ Stanza : cluster1                                         ║
  ║ 压缩方式 : zst                                            ║
  ║ 保留全备份数 : 3                                          ║
  ║ 保留差异数 : 4                                            ║
  ║ 保留归档天数 : 14                                         ║
  ╚═══════════════════════════════════════════════════════════╝

  ╔═════════════════════════════════╗
  ║ S3 存储后端                     ║
  ╠═════════════════════════════════╣
  ║ 端点 : http://10.10.3.69:9000   ║
  ║ Region : us-east-1              ║
  ║ Bucket : repo2                  ║
  ║ 路径前缀 : /backup/a1           ║
  ╚═════════════════════════════════╝


  ╔══════════════════════════════╗
  ║ 节点 1                       ║
  ╠══════════════════════════════╣
  ║ 主机 : 10.10.3.155           ║
  ║ 端口 : 6244                  ║
  ║ PGDATA : /data/pgdata        ║
  ║ SSH : postgres@10.10.3.155   ║
  ╚══════════════════════════════╝

  ╔══════════════════════════════╗
  ║ 节点 2                       ║
  ╠══════════════════════════════╣
  ║ 主机 : 10.10.3.160           ║
  ║ 端口 : 6244                  ║
  ║ PGDATA : /data/pgdata        ║
  ║ SSH : postgres@10.10.3.160   ║
  ╚══════════════════════════════╝

  ╔═════════════════════════════════════════════════════════════════════════════╗
  ║ 常用命令 (su - postgres)                                                    ║
  ╠═════════════════════════════════════════════════════════════════════════════╣
  ║ 健康检查 : pgbackrest --stanza=cluster1 check                               ║
  ║ 全量备份 : pgbackrest --stanza=cluster1 --archive-copy --type=full backup   ║
  ║ 差异备份 : pgbackrest --stanza=cluster1 --archive-copy --type=diff backup   ║
  ║ 查看备份 : pgbackrest info                                                  ║
  ║ Stanza 详情 : pgbackrest --stanza=cluster1 info                             ║
  ╚═════════════════════════════════════════════════════════════════════════════╝

    WAL 归档由各数据库节点 archive_command 自动推送, 本机无需额外配置
  ✔ 安装完成
  ███████████████████████████░░░  90%  已完成 6/7 阶段

  ┌──────────────────────┐
  │  配置 cron 定时备份  │
  └──────────────────────┘
  ███████████████████████████░░░  90%  进入第 7/7 阶段
  ✔ cron 任务已写入 postgres 用户 crontab

  ╔══════════════════════════════════════════════════════════════════════════════════════════════════════════════════════╗
  ║ cron 定时备份任务                                                                                                    ║
  ╠══════════════════════════════════════════════════════════════════════════════════════════════════════════════════════╣
  ║ 周日 06:30 : /home/postgres/app/postgresql/bin/pgbackrest --archive-copy --type=full --stanza=cluster1 backup        ║
  ║ 周一~周六 06:30 : /home/postgres/app/postgresql/bin/pgbackrest --archive-copy --type=diff --stanza=cluster1 backup   ║
  ╚══════════════════════════════════════════════════════════════════════════════════════════════════════════════════════╝
  ✔ 全部配置完成
  ██████████████████████████████ 100%  已完成 7/7 阶段

  ╔══════════════════════════════════════════════════╗
  ║   ✔ pgBackRest 安装与配置全部完成!               ║
  ╚══════════════════════════════════════════════════╝
最后修改时间:2026-08-07 17:21:17
「喜欢这篇文章,您的关注和赞赏是给作者最好的鼓励」
关注作者
【版权声明】本文为墨天轮用户原创内容,转载时必须标注文章的来源(墨天轮),文章链接,文章作者等基本信息,否则作者和墨天轮有权追究责任。如果您发现墨天轮中有涉嫌抄袭或者侵权的内容,欢迎发送邮件至:contact@modb.pro进行举报,并提供相关证据,一经查实,墨天轮将立刻删除相关内容。

评论