Re: PATCH: add "--config-file=" option to pg_rewind
Michael Paquier <michael@paquier.xyz>
From: Michael Paquier <michael@paquier.xyz>
To: Michael Banck <michael.banck@credativ.de>
Cc: "Gunnar \"Nick\" Bluth" <gunnar.bluth@pro-open.de>, Daniel Gustafsson <daniel@yesql.se>, Alexander Kukushkin <cyberdemn@gmail.com>, Aleksander Alekseev <aleksander@timescale.com>, "pgsql-hackers@lists.postgresql.org" <pgsql-hackers@lists.postgresql.org>, x4mmm@yandex-team.ru, kondratovaleksey@gmail.com
Date: 2022-04-06T12:04:50Z
Lists: pgsql-hackers
Attachments
- add_configdir_to_pg_rewind_v7.patch (text/x-diff) patch v7
On Tue, Apr 05, 2022 at 11:10:30AM +0900, Michael Paquier wrote: > In the tests, the only difference between the modes "archive_cli" and > "archive" is the extra option given to the pg_rewind command, and > that's a simple redirect to what pg_rewind would choose by default > anyway. A more elegant solution would be to have an extra option in > RewindTest::run_pg_rewind(), where any caller of the routine can feed > extra options to the pg_rewind command. Now, in this case, we are > not going to lose any coverage if the existing "archive" mode is > changed so as we move away postgresql.conf from the target data folder > and just use --config-file by default, no? I would make the choice of > simplicity, by giving up on "archive_cli" and using > primary-postgresql.conf.tmp as value for --config-file. There could > be an argument for using --config-file for all the modes, as well. The clock is ticking, so I have looked at this patch by myself. I have finished by tweaking the docs, the code and the tests as of the attached. One thing that I found annoying is the lack of description about the fact that this option affects pg_rewind when it internally starts the target cluster, as of when we retrieve restore_command and when we enforce crash recovery to have a target cluster with a clean shutdown state. The tests are heavily simplified, having no impact on the run-time while improving the coverage for the code paths changed here. -- Michael
Commits
-
Add option --config-file to pg_rewind
- 0d5c387573be 15.0 landed
-
Rework internal command generation of pg_rewind
- a33e17f21054 15.0 landed