Skip to content

Commit 6d2310e

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

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
@@ -152,6 +152,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
152152
- Add self-organizing hash table to improve the performance of bucket aggregations ([#7652](https://github.com/opensearch-project/OpenSearch/pull/7652))
153153
- Check UTF16 string size before converting to String to avoid OOME ([#7963](https://github.com/opensearch-project/OpenSearch/pull/7963))
154154
- Move ZSTD compression codecs out of the sandbox ([#7908](https://github.com/opensearch-project/OpenSearch/pull/7908))
155+
- Update ZSTD default compression level ([#8471](https://github.com/opensearch-project/OpenSearch/pull/8471))
155156

156157

157158
### 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)