-
Notifications
You must be signed in to change notification settings - Fork 468
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(pageserver): consider partial compaction layer map in layer check (…
…#10044) ## Problem In #9897 we temporarily disabled the layer valid check because the current one only considers the end result of all compaction algorithms, but partial gc-compaction would temporarily produce an "invalid" layer map. part of #9114 ## Summary of changes Allow LSN splits to overlap in the slow path check. Currently, the valid check is only used in storage scrubber (background job) and during gc-compaction (without taking layer lock). Therefore, it's fine for such checks to be a little bit inefficient but more accurate. --------- Signed-off-by: Alex Chi Z <[email protected]> Co-authored-by: Arpad Müller <[email protected]>
- Loading branch information
Showing
2 changed files
with
71 additions
and
24 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
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
b89e02f
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.
7245 tests run: 6937 passed, 1 failed, 307 skipped (full report)
Failures on Postgres 16
test_storage_controller_many_tenants[github-actions-selfhosted]
: release-x86-64Flaky tests (6)
Postgres 17
test_sharding_split_failures[failure1]
: debug-x86-64test_sharding_split_failures[failure5]
: debug-x86-64test_timeline_archival_chaos
: release-arm64test_timeline_copy[100000]
: release-x86-64Postgres 15
test_physical_replication_config_mismatch_max_locks_per_transaction
: release-arm64Postgres 14
test_physical_replication_config_mismatch_too_many_known_xids
: release-arm64Code coverage* (full report)
functions
:31.2% (8397 of 26877 functions)
lines
:47.9% (66671 of 139052 lines)
* collected from Rust tests only
b89e02f at 2024-12-19T20:14:21.024Z :recycle: