-
Notifications
You must be signed in to change notification settings - Fork 485
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
PR #6266 broke the getpage_latest_lsn benchmark. Before this patch, we'd fail with ``` not implemented: split up range ``` because `r.start = rel size key` and `r.end = rel size key + 1`. The filtering of the key ranges in that loop is a bit ugly, but, I measured: * setup with 180k layer files (20k tenants * 9 layers). * total physical size is 463GiB * 5k tenants, the range filtering takes `0.6 seconds` on an i3en.3xlarge. That's a tiny fraction of the overall time it takes for pagebench to get ready to send requests. So, this is good enough for now / there are other bottlenecks that are bigger.
- Loading branch information
Showing
3 changed files
with
34 additions
and
25 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
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
4e1b0b8
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.
2306 tests run: 2217 passed, 0 failed, 89 skipped (full report)
Flaky tests (6)
Postgres 15
test_branch_and_gc
: releasetest_crafted_wal_end[last_wal_record_crossing_segment]
: releasetest_statvfs_pressure_min_avail_bytes
: debugPostgres 14
test_crafted_wal_end[wal_record_crossing_segment_followed_by_small_one]
: debugtest_empty_branch_remote_storage_upload
: debugtest_empty_tenant_size
: debugCode coverage (full report)
functions
:54.8% (10140 of 18511 functions)
lines
:81.6% (58076 of 71134 lines)
4e1b0b8 at 2024-01-09T19:31:29.590Z :recycle: