From 4b3bd08a6a415e841a5a121c41e90825661f5926 Mon Sep 17 00:00:00 2001 From: Fujii Masao Date: Fri, 13 Feb 2026 14:48:10 +0900 Subject: [PATCH v2] Remove recovery.signal at recovery end when both signal files are present. When both standby.signal and recovery.signal are present, standby.signal takes precedence and the server runs in standby mode. Previously, in this case, recovery.signal was not removed at the end of standby mode (i.e., on promotion) or at the end of archive recovery, while standby.signal was removed. As a result, a leftover recovery.signal could cause a subsequent restart to enter archive recovery unexpectedly, potentially preventing the server from starting. This behavior was surprising and confusing to users. This commit fixes the issue by updating the recovery code to remove recovery.signal alongside standby.signal when both files are present and recovery completes. Because this code path is particularly sensitive and changes in recovery behavior can be risky for stable branches, this change is applied only to the master branch. --- src/backend/access/transam/xlogrecovery.c | 10 ++++++---- src/test/recovery/t/002_archiving.pl | 24 ++++++++++++++++++++++- 2 files changed, 29 insertions(+), 5 deletions(-) diff --git a/src/backend/access/transam/xlogrecovery.c b/src/backend/access/transam/xlogrecovery.c index 4fc37a031d9..c0c2744d45b 100644 --- a/src/backend/access/transam/xlogrecovery.c +++ b/src/backend/access/transam/xlogrecovery.c @@ -1068,9 +1068,6 @@ readRecoverySignalFile(void) * Check for recovery signal files and if found, fsync them since they * represent server state information. We don't sweat too much about the * possibility of fsync failure, however. - * - * If present, standby signal file takes precedence. If neither is present - * then we won't enter archive recovery. */ if (stat(STANDBY_SIGNAL_FILE, &stat_buf) == 0) { @@ -1085,7 +1082,8 @@ readRecoverySignalFile(void) } standby_signal_file_found = true; } - else if (stat(RECOVERY_SIGNAL_FILE, &stat_buf) == 0) + + if (stat(RECOVERY_SIGNAL_FILE, &stat_buf) == 0) { int fd; @@ -1099,6 +1097,10 @@ readRecoverySignalFile(void) recovery_signal_file_found = true; } + /* + * If both signal files are present, standby signal file takes precedence. + * If neither is present then we won't enter archive recovery. + */ StandbyModeRequested = false; ArchiveRecoveryRequested = false; if (standby_signal_file_found) diff --git a/src/test/recovery/t/002_archiving.pl b/src/test/recovery/t/002_archiving.pl index 883ba75b313..b37c16ced6c 100644 --- a/src/test/recovery/t/002_archiving.pl +++ b/src/test/recovery/t/002_archiving.pl @@ -90,6 +90,12 @@ ok( !-f "$data_dir/$recovery_end_command_file", # standby is promoted. $node_standby->promote; +# Check that no signal files are present after promotion. +ok(!-f "$data_dir/recovery.signal", + "recovery.signal was left behind after promotion"); +ok(!-f "$data_dir/standby.signal", + "standby.signal was left behind after promotion"); + # Wait until the history file has been stored on the archives of the # primary once the promotion of the standby completes. This ensures that # the second standby created below will be able to restore this file, @@ -115,6 +121,17 @@ $node_standby2->append_conf( recovery_end_command = 'echo recovery_end_failed > missing_dir/xyz.file' )); +# Create recovery.signal and confirm that both signal files exist. +# This is necessary to test how recovery behaves when both files are present, +# i.e., standby.signal should take precedence and both files should be +# removed at the end of recovery. +$node_standby2->set_recovery_mode(); +my $node_standby2_data = $node_standby2->data_dir; +ok(-f "$node_standby2_data/recovery.signal", + "recovery.signal is present at the beginning of recovery"); +ok(-f "$node_standby2_data/standby.signal", + "standby.signal is present at the beginning of recovery"); + $node_standby2->start; # Save the log location, to see the failure of recovery_end_command. @@ -126,7 +143,6 @@ $node_standby2->promote; # Check the logs of the standby to see that the commands have failed. my $log_contents = slurp_file($node_standby2->logfile, $log_location); -my $node_standby2_data = $node_standby2->data_dir; like( $log_contents, @@ -141,4 +157,10 @@ like( qr/WARNING:.*recovery_end_command/s, "recovery_end_command failure detected in logs after promotion"); +# Check that no signal files are present after promotion. +ok( !-f "$node_standby2_data/recovery.signal", + "recovery.signal was left behind after promotion"); +ok( !-f "$node_standby2_data/standby.signal", + "standby.signal was left behind after promotion"); + done_testing(); -- 2.51.2