酒保恢复命令行为 w.r.t PITR
Barman restore command behavior w.r.t PITR
我已经通过 rsync/SSH 使用 WAL 流(barman 文档中提到的场景 2b)架构使用单个 PostgreSQL 和 Barman 设置了备份。
我想了解 PITR 如何与酒保 recover
命令一起使用。如果在发出恢复命令时指定 --target-time
的当前时间,预期的行为会是什么。它会恢复到酒保从备份时间到当前时间最后收到的 WALs 吗?
谢谢
对于可能有相同问题的其他人(鉴于文档对此并不清楚),我找到了答案并且正如我所料。
是的,它确实可以恢复到从备份时间到当前时间,酒保最后收到的任何 WAL。
请参阅下面的控制台代码段以供参考,
barman@4b412c1875cd:~$ date
Sat Aug 8 02:47:13 UTC 2020
barman@4b412c1875cd:~$ barman recover --target-time "2020-08-08 02:31:00+00:00" postgres-source-db 20200801T030001 /var/log/barman/TESTRESTOREFORTEST
Starting local restore for server postgres-source-db using backup 20200801T030001
Destination directory: /var/log/barman/TESTRESTOREFORTEST
Doing PITR. Recovery target time: '2020-08-08 02:31:00+00:00'
Copying the base backup.
Copying required WAL segments.
Generating recovery configuration
Identify dangerous settings in destination directory.
Recovery completed (start time: 2020-08-08 02:50:46.538480, elapsed time: 1 second)
Your PostgreSQL server has been successfully prepared for recovery!
barman@4b412c1875cd:~$
谢谢
我已经通过 rsync/SSH 使用 WAL 流(barman 文档中提到的场景 2b)架构使用单个 PostgreSQL 和 Barman 设置了备份。
我想了解 PITR 如何与酒保 recover
命令一起使用。如果在发出恢复命令时指定 --target-time
的当前时间,预期的行为会是什么。它会恢复到酒保从备份时间到当前时间最后收到的 WALs 吗?
谢谢
对于可能有相同问题的其他人(鉴于文档对此并不清楚),我找到了答案并且正如我所料。
是的,它确实可以恢复到从备份时间到当前时间,酒保最后收到的任何 WAL。
请参阅下面的控制台代码段以供参考,
barman@4b412c1875cd:~$ date
Sat Aug 8 02:47:13 UTC 2020
barman@4b412c1875cd:~$ barman recover --target-time "2020-08-08 02:31:00+00:00" postgres-source-db 20200801T030001 /var/log/barman/TESTRESTOREFORTEST
Starting local restore for server postgres-source-db using backup 20200801T030001
Destination directory: /var/log/barman/TESTRESTOREFORTEST
Doing PITR. Recovery target time: '2020-08-08 02:31:00+00:00'
Copying the base backup.
Copying required WAL segments.
Generating recovery configuration
Identify dangerous settings in destination directory.
Recovery completed (start time: 2020-08-08 02:50:46.538480, elapsed time: 1 second)
Your PostgreSQL server has been successfully prepared for recovery!
barman@4b412c1875cd:~$
谢谢