pkg/chunkenc: change default LZ4 buffer size to 64k. #1421
Merged
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.
Also added more LZ4 buffer size options for testing.
What this PR does / why we need it:
LZ4 uses 4M buffer size by default when compressing data. It actually uses twice as much memory for decompression. Even though we pool lz4 readers, it can be a lot of allocated and pooled memory, if there are many concurrent decompressions.
In addition to that, we avoid pooling readers that were used to read chunks compressed with higher block sizes. Reason is that such readers must have used twice as much memory, and we don't want to keep these big-allocations in the pool.
Using smaller buffer doesn't affect (de-)compression time, although it may slightly affect ratio.
Time:
Memory:
Special notes for your reviewer:
"lz4" now defaults to LZ4_64k. Other lz4 buffer sizes are not available for user, but used for testing only.
Checklist