1
0
mirror of https://github.com/postgrespro/pg_probackup.git synced 2024-12-04 10:44:46 +02:00
Commit Graph

101 Commits

Author SHA1 Message Date
Grigory Smolkin
6a736c2db6 Version 2.3.3 2020-05-14 18:00:29 +03:00
Grigory Smolkin
77e99179af Version 2.3.2 2020-05-11 21:24:51 +03:00
Grigory Smolkin
5bdfd0fe5c Version 2.3.1 2020-05-03 00:02:16 +03:00
Grigory Smolkin
99fdd3b919 Version 2.3.0 2020-04-29 14:28:55 +03:00
Grigory Smolkin
1c81e75699 minor improvements 2020-04-29 14:27:36 +03:00
Grigory Smolkin
00ea177048 Version 2.2.7 2020-01-07 21:18:28 +03:00
Grigory Smolkin
f431452ea9 Version 2.2.6 2019-12-29 21:43:23 +03:00
Grigory Smolkin
d2c60ca52f Version 2.2.5 2019-10-31 20:12:33 +03:00
Grigory Smolkin
386c2cb1b4 Version 2.2.4 2019-10-24 18:28:18 +03:00
Grigory Smolkin
721b843416 tests: fixes for 9.5 2019-10-24 17:55:52 +03:00
Grigory Smolkin
e60cb2041b Version 2.2.3 2019-10-15 21:51:15 +03:00
Grigory Smolkin
c1b4110d47 Version 2.2.2 2019-10-15 15:39:03 +03:00
Grigory Smolkin
96ba94862a Version 2.2.1 2019-10-11 19:20:25 +03:00
Grigory Smolkin
5c4ad52e6d Version 2.2.0 2019-10-09 21:10:02 +03:00
Grigory Smolkin
1534590bba help: new option '--wal-depth' 2019-10-09 00:00:05 +03:00
Grigory Smolkin
3fa01d3236 tests: minor fix 2019-09-17 17:37:18 +03:00
Grigory Smolkin
b55bfe82be Version 2.1.5 2019-07-26 11:05:19 +03:00
Grigory Smolkin
bb6d32fd33 Release 2.1.4 2019-07-19 12:20:39 +03:00
Grigory Smolkin
433d7bdc6a tests: fix expected results 2019-07-08 16:02:30 +03:00
Grigory Smolkin
2ac21b541d Release 2.1.3 2019-05-30 14:19:02 +03:00
Grigory Smolkin
21230cbb6c Release 2.1.2 2019-05-22 13:04:19 +03:00
Grigory Smolkin
f84b21ca24 Release 2.1.1 2019-05-01 18:36:15 +03:00
Grigory Smolkin
809ccbe7bc bump version to 2.1.0 and update expected help 2019-04-20 15:48:52 +03:00
Arthur Zakirov
baa6aa8e35 Fix help messages 2019-04-16 13:34:57 +03:00
Arthur Zakirov
c440ab0f45 Merge remote-tracking branch 'origin/remote_pull' 2019-04-16 13:24:02 +03:00
Arthur Zakirov
eec03820e4 Merge branch 'pbckp-36' 2019-04-16 11:33:08 +03:00
Arthur Zakirov
592df2e606 PBCKP-36: Fix help message for RESTORE and VALIDATE 2019-04-16 10:54:05 +03:00
Arthur Zakirov
db179af048 PBCKP-36: Fix recovery-target options 2019-04-12 14:48:53 +03:00
Grigory Smolkin
4193766317 Merge branch 'master' into remote_pull 2019-04-12 14:05:27 +03:00
Grigory Smolkin
8aeddc9892 tests: minor fixes 2019-04-11 16:33:16 +03:00
Grigory Smolkin
9ca020c127 tests: update option_help.out 2019-04-10 22:31:52 +03:00
Arthur Zakirov
d87149c68f PBCKP-36: Create recovery.conf if --latest specified 2019-04-10 15:57:32 +03:00
Konstantin Knizhnik
f0576ce10f Merge with master 2019-04-03 17:55:02 +03:00
Grigory Smolkin
b00243f05b bump version to 2.0.28 2019-03-06 20:23:17 +03:00
Arthur Zakirov
70b299c34b PGPRO-1973: Add support pthreads for VALIDATE command 2019-03-04 19:02:29 +03:00
Arthur Zakirov
e9190e6cc3 tests: update help test 2019-03-04 16:47:21 +03:00
Grigory Smolkin
ba8410686b Version 2.0.27
- Bugfix: reading of compressed WAL files was very slow, it happened because xlogreader was in habit of reading XLOG page twice, which breaks zlib optimization for sequential access. See https://commitfest.postgresql.org/22/1994 for additional info. Reported by Alex Ignatov.
- Bugfix: previously path to PGDATA was not canonicalized. On Windows this could lead to producing empty backups. Additionally during investigation another bug was found: readdir() silently ignored 'permission denied' errors. See https://www.postgresql.org/message-id/2cad7829-8d66-e39c-b937-ac825db5203d%40postgrespro.ru for additional info. Reported by Yuri Kurenkov.
- Bugfix: archive-push didn`t use O_EXCL flag when creating '.partial' file, in rare case of two PostgreSQL instances concurrently pushing the same WAL segment it could lead to corruption of pushed WAL segment.
- Minor bugfix: disappeared during backup files were marked as 'not changed', now they just evicted from file list.
- Minor bugfix: skip 'log' directory during backup for PG >= 10. Reported by triwada.
- Improvement: previously locking was done at instance level, because of that concurrent operations were impossible, now it is done at the backup level, so restore of backup A won`t interfere with validation of backup B.
- Improvement: previously restore was relying on sort order when restoring incremental backups, now it`s relying on parent chain.
- Minor improvement: when using show command "Time" for RUNNING backups now calculated on the fly.
- Minor improvement: START LSN of backup now written to backup meta right after receiving, not at the end of the backup. It will be needed for "resume" feature.
2019-02-28 11:02:25 +03:00
Arthur Zakirov
d8553c06af Version 2.0.26
- Bugfix: fixed undefined behaviour in case of undefined compression algorithm
- Bugfix: correctly calculate backup size after MERGE
- Bugfix: fixed MERGE of compressed and uncompressed backups
- Bugfix: remove unnecessary remaining files after MERGE
- Bugfix: consider target LSN (--lsn parameter) during validating WAL
- Improvement: check backup program_version during VALIDATE, do not support forward compatibility
- Improvement: improve Windows support
- Improvement: improve support of tablespaces within PGDATA
2019-01-09 15:28:30 +03:00
Arthur Zakirov
e199c4aee8 Use CRC-32C again. Calculate crc for pg_control differently using ControlFileData struct.
Bump version to 2.0.25.
2018-11-26 14:17:46 +03:00
Grigory Smolkin
de9c3b64d7 Version 2.0.24
- Major bugfix: incorrect handling of badly compressed blocks, previously there was a risk to restore block in uncompressed state, if compressed size was equal or larger than BLCKSZ
        - Impromevent: backup from replica >= 9.6 no longer need connection to master
        - Workaround: wrong minRecPoint in PostgreSQL thanks to commit 8d68ee6(block from future), overwrite minRecPoint with latest applied LSN
        - Impromevent: merge is now considered stable feature
        - Impromevent: validation now use more conservative and paranoid approach to file validation, during validation pg_probackup also check block checksumm, make sanity check based on block header information and try to detect blocks from future
        - New validate/restore options:
           '--skip-block-validation' - disable aforementioned approach to file validation
        - Multiple minor fixes
2018-11-12 12:41:02 +03:00
Grigory Smolkin
6eefeeba8d tests: expected help fixed 2018-11-12 12:15:54 +03:00
Arthur Zakirov
ea3ed9fa17 Instead of current global backup variable use function local argument, which is sent by callers 2018-11-08 15:04:55 +03:00
Arthur Zakirov
62a6317ed8 Version 2.0.22
- Calculate checksum for backuped files using CRC-32, validate pre 2.0.22 backups using CRC-32C
- Do not backup unchanged _vm,_fsm, pg_clog, pg_multixact, etc files
- Write program-version only during backup
- Minor fixes and bug fixes
2018-10-26 19:10:04 +03:00
Arthur Zakirov
0669939bba Fix tests 2018-10-11 12:58:37 +03:00
Arthur Zakirov
c90d578a67 Version 2.0.21
- Dynamically resize show table
- Port to PostgreSQL 11
- Minor fixes and bug fixes
2018-10-09 20:01:54 +03:00
Arthur Zakirov
85f7559d53 Version 2.0.20
Minor fixes and bug fixes
2018-09-26 18:22:31 +03:00
Grigory Smolkin
9191746ce0 tests: minor fixes 2018-09-06 20:46:32 +03:00
Anastasia
33a33a9e1b Version 2.0.19.
Various fixes and code cleanup for previous version.
2018-08-17 16:31:28 +03:00
Arthur Zakirov
3f5540de6a Version 2.0.18 2018-08-06 12:47:51 +03:00
Arthur Zakirov
4ed28cf6e5 PGPRO-1449: Add MERGE command: merge PAGE with FULL backup 2018-08-02 11:57:39 +03:00