-
-
Notifications
You must be signed in to change notification settings - Fork 4.6k
feat: Implement custom Updater for object store storage #53423
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
Open
artonge
wants to merge
3
commits into
master
Choose a base branch
from
artonge/feat/implement_custom_updater_for_object_storage
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
feat: Implement custom Updater for object store storage #53423
artonge
wants to merge
3
commits into
master
from
artonge/feat/implement_custom_updater_for_object_storage
+77
−5
Conversation
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
2a8347a to
2e58d36
Compare
777885a to
dc0b4d4
Compare
Member
|
I think this is complete now, but I don't know if @artonge had anything more planned |
dc0b4d4 to
bc81da8
Compare
Contributor
Author
|
/backport to stable31 |
bc81da8 to
20d4008
Compare
come-nc
requested changes
Jun 17, 2025
2e82b22 to
914b44d
Compare
come-nc
approved these changes
Jun 19, 2025
Add a custom wrapper around the Updater for ObjectStoreStorage. This wrapper will skip updating the cache in some scenario. This is because a lot of cache management is already done in ObjectStoreStorage, so this will prevent heavy operations. Signed-off-by: Louis Chemineau <louis@chmn.me>
Signed-off-by: Robin Appelman <robin@icewind.nl>
914b44d to
82f43ba
Compare
Signed-off-by: Robin Appelman <robin@icewind.nl>
a364bd1 to
b6766b5
Compare
This was referenced Aug 22, 2025
Merged
Merged
Merged
Merged
Merged
This was referenced Sep 25, 2025
Merged
Merged
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
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.
Add Custom Updater class for
ObjectStoreStorage.This wrapper will do nothing when the
updatemethod is called.This is to skip heavy cache operations, as they are already done in
ObjectStoreStorage.Replaces #52998