-
Notifications
You must be signed in to change notification settings - Fork 458
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Do not wallog AUX files at replica (#9457)
## Problem Attempt to persist LR stuff at replica cause cannot make new WAL entries during recovery` error. See https://neondb.slack.com/archives/C07S7RBFVRA/p1729280401283389 ## Summary of changes Do not wallog AUX files at replica. Related Postgres PRs: neondatabase/postgres#517 neondatabase/postgres#516 neondatabase/postgres#515 neondatabase/postgres#514 ## Checklist before requesting a review - [ ] I have performed a self-review of my code. - [ ] If it is a core feature, I have added thorough tests. - [ ] Do we need to implement analytics? if so did you add the relevant metrics to the dashboard? - [ ] If this PR requires public announcement, mark it with /release-notes label and add several sentences in this section. ## Checklist before merging - [ ] Do not forget to reformat commit message to not include the above checklist --------- Co-authored-by: Konstantin Knizhnik <knizhnik@neon.tech> Co-authored-by: Heikki Linnakangas <heikki@neon.tech>
- Loading branch information
1 parent
d8f5d43
commit 1ff5333
Showing
6 changed files
with
58 additions
and
11 deletions.
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
Submodule postgres-v14
updated
3 files
+5 −0 | src/backend/access/heap/rewriteheap.c | |
+14 −6 | src/backend/replication/logical/snapbuild.c | |
+7 −3 | src/backend/replication/slot.c |
Submodule postgres-v15
updated
3 files
+5 −0 | src/backend/access/heap/rewriteheap.c | |
+14 −6 | src/backend/replication/logical/snapbuild.c | |
+7 −3 | src/backend/replication/slot.c |
Submodule postgres-v16
updated
3 files
+5 −0 | src/backend/access/heap/rewriteheap.c | |
+14 −6 | src/backend/replication/logical/snapbuild.c | |
+7 −3 | src/backend/replication/slot.c |
Submodule postgres-v17
updated
3 files
+5 −0 | src/backend/access/heap/rewriteheap.c | |
+14 −8 | src/backend/replication/logical/snapbuild.c | |
+7 −3 | src/backend/replication/slot.c |
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 |
---|---|---|
@@ -1,18 +1,18 @@ | ||
{ | ||
"v17": [ | ||
"17.0", | ||
"9ad2f3c5c37c08069a01c1e3f6b7cf275437e0cb" | ||
"ae4cc30dba24f3910533e5a48e8103c3f2fff300" | ||
], | ||
"v16": [ | ||
"16.4", | ||
"e131a9c027b202ce92bd7b9cf2569d48a6f9948e" | ||
"03b43900edc5d8d6eecec460bfc89aec7174bd84" | ||
], | ||
"v15": [ | ||
"15.8", | ||
"22e580fe9ffcea7e02592110b1c9bf426d83cada" | ||
"fd631a959049dfe2b82f67409c8b8b0d3e0016d1" | ||
], | ||
"v14": [ | ||
"14.13", | ||
"2199b83fb72680001ce0f43bf6187a21dfb8f45d" | ||
"de0a000dafc2e66ce2e39282d3aa1c704fe0390e" | ||
] | ||
} |
1ff5333
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.
5391 tests run: 5170 passed, 1 failed, 220 skipped (full report)
Failures on Postgres 17
test_sharding_split_stripe_size[65536]
: debug-x86-64Flaky tests (3)
Postgres 17
test_create_churn_during_restart
: debug-x86-64Postgres 15
test_lr_with_slow_safekeeper
: release-arm64test_obsolete_slot_drop
: release-arm64Test coverage report is not available
1ff5333 at 2024-11-13T07:42:48.931Z :recycle: