[CELEBORN-2270] Fix problem with eviction to tiered storage during partition split#3610
Closed
eolivelli wants to merge 4 commits intoapache:mainfrom
Closed
[CELEBORN-2270] Fix problem with eviction to tiered storage during partition split#3610eolivelli wants to merge 4 commits intoapache:mainfrom
eolivelli wants to merge 4 commits intoapache:mainfrom
Conversation
140549a to
2b5a1b2
Compare
Member
|
@eolivelli, #3608 has already been merged. Please rebase the latest main branch. |
2b5a1b2 to
b442862
Compare
Contributor
Author
rebased |
There was a problem hiding this comment.
Pull request overview
Copilot reviewed 7 out of 7 changed files in this pull request and generated 1 comment.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
RexXiong
approved these changes
Mar 2, 2026
SteNicholas
approved these changes
Mar 2, 2026
Member
|
Thanks. Merged to main(v0.7.0). |
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
NOTE: this PR is stacked on top of #3608
Please consider only 756d25e
What changes were proposed in this pull request?
Handle the eviction to a different location type.
Why are the changes needed?
Because it may happen that a MEMORY file is to be evicted to another storage type (i.e. S3). This does not work.
Usually, as described in tests in #3608 when you have tiered storage, the primary partition type is usually not MEMORY, but it may happen that during a partition split the client decides to use MEMORY.
This patch fixes the problem on the worker side.
An alternative fix would be to change the behavior of the client, and simulate what the master does when offering slots.
Such a change would be more involved and it won't make the server side resilient to this scenario.
Does this PR resolve a correctness bug?
No.
Does this PR introduce any user-facing change?
No.
How was this patch tested?