-
Notifications
You must be signed in to change notification settings - Fork 25k
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
Make Stored Compression Configurable #4160
Comments
This would be a huge plus to us right now - we're getting ready to set up a very large cluster (~30Tb+ data), and the current compression (which is designed to be a somewhat compressive, but mostly fast) is painful. Being able to set a high compression rate, and accept that it will make things slightly slower, is a really big win. |
Indeed, note, this will require some changes in Lucene as well, which we are working on to make it happen. We obviously will keep this issue updated with progress. |
pushing out to |
Hi folks, we're into |
@avleen this is tricky to implement, effectively, it means that we would somehow change Lucene configuration (codec) to have high LZ4 compression on the fly, which is not possible today. We are investigating how to properly expose it in Lucene safely, which proves to be a bit tricky. The hope is to address it soon, but no concrete timeframe. /cc @jpountz |
Thanks Shay! On Sat, Jul 5, 2014 at 1:15 PM, Shay Banon [email protected] wrote:
|
FYI there is now an open issue on the Lucene side: https://issues.apache.org/jira/browse/LUCENE-5914 |
closed in favor of #8863 |
Allow to make the stored compression configurable on the index level (
index.store.compression.level
), and use that when constructing the codec to use.If possible (will be tricky), allow to set it on a live index, so for example, for time base indices, older indices can move to use higher compression mode and optimized (which should probably be done over a different issue once the setting is implemented).
The text was updated successfully, but these errors were encountered: