-
Notifications
You must be signed in to change notification settings - Fork 24.9k
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
Unify blob store compress setting #39346
Unify blob store compress setting #39346
Conversation
Blob store compression was all implemented generally, except reading the setting for it. Moved the setting to BlobStoreRepository to unify this. Also removed deprecated env setting 'repositories.fs.compress'. This is a follow up on elastic#39073
Pinging @elastic/es-distributed |
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.
LGTM :)
Not sure about adding something to the breaking changes (instinctively it may be a good idea, given the previous log message) => @ywelsch wdyt?
server/src/test/java/org/elasticsearch/repositories/blobstore/BlobStoreRepositoryTests.java
Show resolved
Hide resolved
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.
Added breaking changes documentation on the removed 'repositories.fs.compress' setting. This is a follow up on elastic#39073
I added the breaking changes documentation for the removed setting. |
@elasticmachine run elasticsearch-ci/bwc |
* Thanks to elastic#39346 we can simplify the logic here some more, now that compress is a `final` field
* Thanks to #39346 we can simplify the logic here some more, now that compress is a `final` field
* Thanks to elastic#39346 we can simplify the logic here some more, now that compress is a `final` field
Blob store compression was all implemented generally, except reading the
setting for it. Moved the setting to BlobStoreRepository to unify this.
Also removed deprecated env setting 'repositories.fs.compress'.
This is a follow up on #39073
Given this is not documented, does this need to be included in the breaking changes
documentation for 8.0?