1
0
mirror of https://github.com/postgrespro/pg_probackup.git synced 2025-07-14 06:54:15 +02:00
Commit Graph

3217 Commits

Author SHA1 Message Date
11e1240b71 Merge branch 'master' into release_2_5 2021-06-17 22:56:32 +03:00
dbbfee4a63 tests: disable ptrack testing for PG < 11 2021-06-17 22:29:55 +03:00
cf8fb8c9de travis: run only smoke suit 2021-06-17 21:59:04 +03:00
45b7816fe9 Merge branch 'master' into release_2_5 2021-06-17 21:44:33 +03:00
318cb6e5b8 travis: some more fixes 2021-06-17 21:41:39 +03:00
6506eade26 travis: move to python3 2021-06-17 21:41:35 +03:00
423ffcaf38 travis: start sshd in container 2021-06-17 21:41:31 +03:00
365c959f58 travis: some more fixes 2021-06-17 21:40:46 +03:00
88bea549d3 travis: move to python3 2021-06-17 21:31:30 +03:00
5f54e623c9 travis: start sshd in container 2021-06-17 21:23:34 +03:00
4c27a93e8d tests: minor fix in ptrack.py 2021-06-17 19:44:08 +03:00
c8c74360d4 Merge branch 'master' into release_2_5 2021-06-17 19:29:07 +03:00
7c3f49a7eb travis: run on every branch, do not tolerate job failures 2021-06-17 19:28:48 +03:00
cce59bc824 Remove ptrack-1.* support (#398)
* Remove ptrack-1.* support

* [PR #398] review feedback

* [PR #398] remove conn_arg from backup_files_arg

Co-authored-by: Grigory Smolkin <g.smolkin@postgrespro.ru>
2021-06-17 19:11:36 +03:00
97b23c45f6 Merge branch 'master' into release_2_5 2021-06-17 02:33:06 +03:00
6e8e948fd6 [Issue #313] added test coverage 2021-06-17 02:32:36 +03:00
d1106e5571 [Issue #394] use durable_write in fio_write 2021-06-14 14:16:07 +03:00
da2cbcb2e7 [Issue #394] fio_close is now synchronous 2021-06-14 13:59:49 +03:00
13a1821b61 Merge branch 'master' into release_2_5 2021-06-14 13:58:29 +03:00
8ae217bae5 [Issue #394] correctly detect ENOSPC when using write(): durable_write is implemented 2021-06-14 13:34:05 +03:00
02ca67d9d9 Merge branch 'master' into release_2_5 2021-06-12 20:25:38 +03:00
477e5bcb4f Some minor fixes (#397)
* Reformat fio_*() definitions for easier grep'ping
* typo
* move check_postmaster() into src/utils/file.c (from src/util.c), rename it to local_check_postmaster() and make it static/private to src/utils/file.c
2021-06-12 20:21:14 +03:00
47c39932b0 Merge pull request #393 from postgrespro/join_path_components
replace snprintf by join_path_components
2021-06-07 17:23:11 +03:00
0dcfb06ec7 s:snprintf(..., MAXPGPATH, "%s/%s", ...):join_path_components(...):g 2021-06-07 15:48:53 +03:00
6bdd241d7b Merge branch 'master' into release_2_5 2021-06-03 19:09:59 +03:00
4ba1d653bf Merge pull request #390 from postgrespro/ptrack-version-refactoring
introduce ptrack_parse_version_string() and new ptrack version number…
2021-06-03 18:49:27 +03:00
908a5ad65a introduce ptrack_parse_version_string() and new ptrack version numbering schema 2021-06-03 18:28:22 +03:00
3013a783f3 Release 2 5 pg stop backup decomposition2 (#387)
* Rename pg_checksum_enable() to pg_is_checksum_enabled
* Remove unused instanceState from pg_start_backup()
* Refactor wait_wal_lsn(): remove unused pgBackup * parameter and replace InstanceState * with simple directory string
* Refactor pg_stop_backup(): remove useless conn variable
* Make some functions and variables (from backup.c) accessible from other compilation units
* Remove some references to global stream_wal variable
* Remove unused variable externaldir
* Yet another split of pg_stop_backup(): separate verification of stop_lsn into wait_wal_and_calculate_stop_lsn()
* Create pfilearray_clear_locks() helper function
2021-05-27 03:14:15 +03:00
151d4999b0 [PR #386] test coverage 2021-05-27 02:27:19 +03:00
3c66873f57 [PR #386] fix 2021-05-27 02:25:56 +03:00
991917efbc Merge pull request #386 from postgrespro/release_2_5-pgpro-5018
PGPRO-5018: Passing prev_backup_start_lsn (also known as horizonLsn) …
2021-05-26 21:22:41 +03:00
ab85396a85 Merge branch 'master' into release_2_5 2021-05-26 21:08:39 +03:00
4188a699f2 Version 2.4.16 2.4.16 2021-05-26 12:57:10 +03:00
1fad931140 Merge pull request #388 from postgrespro/fix_valgrind
Fix some valgrind alerts
2021-05-26 12:15:24 +03:00
dbf0273d5f Merge pull request #389 from postgrespro/autovacuum_off
tests: disable autovacuum by default
2021-05-25 17:44:21 +03:00
d3bbb74d01 tests: disable autovacuum by default
With autovacuum enabled tests are unstable. Especially they are unstable
if postgresql is running under valgrind and therefore is severely
inhibited (and vacuum has time to be triggered).
2021-05-25 17:09:42 +03:00
012719d286 fix valgrind alerts
valgrind detected some uninitialized memory usage.
Looks like shift_lsn one is a real bug.
2021-05-24 21:27:13 +03:00
ac2e7ccf1c PGPRO-5018: Passing prev_backup_start_lsn (also known as horizonLsn) into fio_send_pages() and send_pages() in case of ptrack backup for additional verification of block changes on the server side (without test yet). 2021-05-24 06:22:11 +03:00
d8050e5ce4 [Issue #385] improve test coverage 2021-05-18 14:59:00 +03:00
0e4b3a970a [Issue #385] pg_stop_backup refactoring, part 1 2021-05-18 12:12:42 +03:00
cf0888594f Merge branch 'master' into release_2_5 2021-05-15 12:21:57 +03:00
f840ae4fe7 Merge branch 'master' of github.com:postgrespro/pg_probackup 2021-05-13 12:09:35 +03:00
7075432e17 Merge pull request #382 from postgrespro/ptrack_version
Accept ptrack v2.2 as well
2021-05-13 10:57:36 +03:00
33c28fdd7f Accept ptrack v2.2 as well 2021-05-12 20:39:05 +03:00
341b767e1d Merge pull request #378 from dld-r00f/patch-1
Update README.md
2021-05-11 09:42:49 +03:00
46bf00d60a Update README.md
Change repo setup for all sections where the  `sudo echo` commands are located.
2021-05-04 11:50:08 +03:00
89188e81cf Update README.md
Change repo setup for Ubuntu/Deb for PostgresPro section.
2021-05-04 11:14:09 +03:00
30f7f78b08 Update README.md
Error in ubuntu repo installation command for not super user. Sudo command works only for echo command not for redirection and plain user have no rights to write to /etc/apt/sources.list.d/ folder.
2021-05-03 20:07:54 +03:00
17251d6677 [Issue #376] follow symlinks when walking the WAL archive directory 2021-04-28 11:04:48 +03:00
b1ee3a9dc3 DOC: update 2021-04-27 22:19:29 +03:00