1
0
mirror of https://github.com/postgrespro/pg_probackup.git synced 2025-01-09 14:45:47 +02:00
Commit Graph

21 Commits

Author SHA1 Message Date
Anastasia
f833ca624b Code cleanup: backup, restore. Still WIP. Something can be broken. 2017-04-18 11:41:02 +03:00
Artur Zakirov
b31485640b Read recovery_time and recovery_xid from WAL segments whenever possible 2017-03-24 16:58:35 +03:00
Artur Zakirov
3a7b6d5de4 Wait right WAL segment for backup from replica 2017-03-23 17:00:43 +03:00
Artur Zakirov
b67dd1e2ea Update copyright 2017-03-01 16:50:07 +03:00
Artur Zakirov
9454066156 Fix validation messages 2017-02-27 16:42:17 +03:00
Artur Zakirov
20e550518c Fix validation messages 2017-02-27 15:00:44 +03:00
Artur Zakirov
c2410fc72b Fix WAL validate messages 2017-02-17 15:37:44 +03:00
Artur Zakirov
8fdbe1ede9 Fix message in valid_wal() 2017-02-16 19:58:25 +03:00
Artur Zakirov
a3e5458166 Fix do_validate() and do_restore() 2017-02-16 19:44:16 +03:00
Artur Zakirov
aa271784ed Fixes for retention and validate commands 2017-02-15 20:44:06 +03:00
Anastasia
d6b612e3c2 fix INFO message 2017-02-15 18:31:40 +03:00
Artur Zakirov
2c6da8dbbd SimpleXLogPageRead(): exit from function if WAL segment doesn't exist 2017-02-15 12:44:45 +03:00
Artur Zakirov
faa97dee16 Fix error messaging during reading WAL segments 2017-02-13 19:19:37 +03:00
Artur Zakirov
b6b2402b49 Make compiler quiet 2017-01-27 11:44:40 +03:00
stalkerg
19a9dd9b3e Show realy last know xid in wal validate. 2016-12-16 18:40:31 +03:00
stalkerg
efd552ee5c Check WALs in validate command. Also support 64bit XID from PGPRO_EE. issue #5 2016-12-07 16:28:48 +03:00
stalkerg
ed8fbcab78 Make validate logic like restore. issue #5 2016-12-06 16:44:18 +03:00
stalkerg
188bbdd593 Rename project to pg_probackup. 2016-11-16 20:34:21 +03:00
Zhuravlev Uriy aka stalkerg
30845bf4a6 Check ptrack control file. 2016-03-10 17:40:33 +03:00
Michael Paquier
bee3489584 Update some copyright lines to 2016 2016-01-16 00:02:09 +09:00
Michael Paquier
04834e73c7 Page-level backup using block tracking in WAL records
This commit improves the performance of page-level, or differential
backup, by not having to scan anymore all the pages of a relation file,
something that can be very long on large data sets, but by scanning the
list of blocks changed by WAL records since the last full or differential
backup.

As a restriction and to avoid potential data corruption should hint-bit
updates occur on a page, backups can only be taken from a server that has
wal_log_hints or data checksums enabled.

Base patch by Yury Zhuravlev, heavily modified by me.
2016-01-15 23:47:38 +09:00