Skip to content

Commit 54a8f61

Browse files
committed
[log] Enable ZSTD compression for Arrow log format by default
1 parent 22d9c94 commit 54a8f61

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

fluss-common/src/main/java/com/alibaba/fluss/config/ConfigOptions.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -902,8 +902,7 @@ public class ConfigOptions {
902902
public static final ConfigOption<ArrowCompressionType> TABLE_LOG_ARROW_COMPRESSION_TYPE =
903903
key("table.log.arrow.compression.type")
904904
.enumType(ArrowCompressionType.class)
905-
// TODO: change to ZSTD by default when it is stable
906-
.defaultValue(ArrowCompressionType.NONE)
905+
.defaultValue(ArrowCompressionType.ZSTD)
907906
.withDescription(
908907
"The compression type of the log records if the log format is set to 'ARROW'. "
909908
+ "The candidate compression type is "

0 commit comments

Comments
 (0)