-
Notifications
You must be signed in to change notification settings - Fork 12
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add GUC controlling whether to pause recovery if some critical GUCs at replica have smaller value than on primary #501
Open
knizhnik
wants to merge
3
commits into
REL_16_STABLE_neon
Choose a base branch
from
pause_recovery_at_misconfig_v16
base: REL_16_STABLE_neon
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 1 commit
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -91,7 +91,7 @@ TimestampTz recoveryTargetTime; | |||||
const char *recoveryTargetName; | ||||||
XLogRecPtr recoveryTargetLSN; | ||||||
int recovery_min_apply_delay = 0; | ||||||
bool recoveryPauseOnMisconfig = false; | ||||||
bool allowReplicaMisconfig = false; | ||||||
|
||||||
/* options formerly taken from recovery.conf for XLOG streaming */ | ||||||
char *PrimaryConnInfo = NULL; | ||||||
|
@@ -4810,8 +4810,11 @@ RecoveryRequiresIntParameter(const char *param_name, int currValue, int minValue | |||||
currValue, | ||||||
minValue))); | ||||||
|
||||||
if (!recoveryPauseOnMisconfig) | ||||||
if (!allowReplicaMisconfig) | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Shouldn't this be
Suggested change
|
||||||
{ | ||||||
/* Сontinue replication even though it can cause problerms later */ | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
return; | ||||||
} | ||||||
|
||||||
SetRecoveryPause(true); | ||||||
|
||||||
|
@@ -4861,7 +4864,17 @@ RecoveryRequiresIntParameter(const char *param_name, int currValue, int minValue | |||||
ConditionVariableCancelSleep(); | ||||||
} | ||||||
|
||||||
ereport(recoveryPauseOnMisconfig ? FATAL : WARNING, | ||||||
if (allowReplicaMisconfig) | ||||||
ereport(WARNING, | ||||||
(errcode(ERRCODE_INVALID_PARAMETER_VALUE), | ||||||
errmsg("Insufficient parameter settings can cause problems during recovery"), | ||||||
/* Repeat the detail from above so it's easy to find in the log. */ | ||||||
errdetail("%s = %d is a lower setting than on the primary server, where its value was %d.", | ||||||
param_name, | ||||||
currValue, | ||||||
minValue))); | ||||||
else | ||||||
ereport(FATAL, | ||||||
(errcode(ERRCODE_INVALID_PARAMETER_VALUE), | ||||||
errmsg("recovery aborted because of insufficient parameter settings"), | ||||||
/* Repeat the detail from above so it's easy to find in the log. */ | ||||||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Where's the GUC for this defined? It was in guc_tables.c in an earlier version of this PR but I don't see it anymore. Is it in the neon extension perhaps? If so, let's add a comment here pointing that out.