Skip to content
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

feat(pageserver): support synthetic size calculation for invisible branches #11335

Merged
merged 2 commits into from
Apr 1, 2025

Conversation

skyzh
Copy link
Member

@skyzh skyzh commented Mar 20, 2025

Problem

ref #11279

Imagine we have a branch with 3 snapshots A, B, and C:

base---+---+---+---main
        \-A \-B \-C
base=100G, base-A=1G, A-B=1G, B-C=1G, C-main=1G

at this point, the synthetic size should be 100+1+1+1+1=104G.

after the deletion, the structure looks like:

base---+---+---+
       \-A \-B \-C

If we simply assume main never exists, the size will be calculated as size(A) + size(B) + size(C)=300GB, which obviously is not what the user would expect.

The correct way to do this is to assume part of main still exists, that is to say, set C-main=1G:

base---+---+---+main
       \-A \-B \-C

And we will get the correct synthetic size of 100G+1+1+1=103G.

Summary of changes

  • Do not generate gc cutoff point for invisible branches.
  • Use the same LSN as the last branchpoint for branch end.
  • Remove test_api_handler for mark_invisible.

…anches

Signed-off-by: Alex Chi Z <chi@neon.tech>
@skyzh skyzh requested a review from arpad-m March 20, 2025 23:03
@skyzh skyzh requested a review from a team as a code owner March 20, 2025 23:03
Copy link

github-actions bot commented Mar 21, 2025

8030 tests run: 7647 passed, 0 failed, 383 skipped (full report)


Flaky tests (8)

Postgres 17

Postgres 16

Postgres 15

Postgres 14

Code coverage* (full report)

  • functions: 32.5% (8778 of 27040 functions)
  • lines: 48.9% (76054 of 155496 lines)

* collected from Rust tests only


The comment gets automatically updated with the latest test results
03b98b9 at 2025-03-31T20:32:44.986Z :recycle:

Signed-off-by: Alex Chi Z <chi@neon.tech>
@skyzh skyzh requested a review from Copilot March 31, 2025 19:19
Copy link

@Copilot Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull Request Overview

This PR adds support for synthetic size calculation for invisible branches, ensuring that size computation correctly handles branches marked as invisible.

  • Added an is_invisible helper on Timeline to propagate branch visibility information.
  • Adjusted lease point and branch endpoint selection logic in size calculation based on branch visibility.
  • Updated the API route for marking a timeline as invisible and added tests for the new synthetic size logic.

Reviewed Changes

Copilot reviewed 4 out of 4 changed files in this pull request and generated 1 comment.

File Description
pageserver/src/tenant/timeline.rs Added a helper function to check branch invisibility.
pageserver/src/tenant/size.rs Updated synthetic size calculation to handle invisible branches and adjusted lease point/endpoint logic.
pageserver/src/tenant.rs Added test coverage for synthetic size calculation with invisible branches.
pageserver/src/http/routes.rs Changed the mark_invisible handler from testing_api_handler to api_handler.

@skyzh skyzh added this pull request to the merge queue Apr 1, 2025
Merged via the queue into main with commit c4fc602 Apr 1, 2025
100 checks passed
@skyzh skyzh deleted the skyzh/invisible-branch-synthetic-size branch April 1, 2025 18:57
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants