Skip to content

Commit 6ab959c

Browse files
sarthakaggarwal97vikasvb90
authored andcommitted
default compression level change (opensearch-project#8471)
Signed-off-by: Sarthak Aggarwal <sarthagg@amazon.com>
1 parent a491519 commit 6ab959c

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -151,6 +151,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
151151
- Add self-organizing hash table to improve the performance of bucket aggregations ([#7652](https://github.com/opensearch-project/OpenSearch/pull/7652))
152152
- Check UTF16 string size before converting to String to avoid OOME ([#7963](https://github.com/opensearch-project/OpenSearch/pull/7963))
153153
- Move ZSTD compression codecs out of the sandbox ([#7908](https://github.com/opensearch-project/OpenSearch/pull/7908))
154+
- Update ZSTD default compression level ([#8471](https://github.com/opensearch-project/OpenSearch/pull/8471))
154155

155156

156157
### Deprecated

server/src/main/java/org/opensearch/index/codec/customcodecs/Lucene95CustomCodec.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
* @opensearch.internal
2424
*/
2525
public abstract class Lucene95CustomCodec extends FilterCodec {
26-
public static final int DEFAULT_COMPRESSION_LEVEL = 6;
26+
public static final int DEFAULT_COMPRESSION_LEVEL = 3;
2727

2828
/** Each mode represents a compression algorithm. */
2929
public enum Mode {

0 commit comments

Comments
 (0)