Skip to content

Commit f1251ab

Browse files
committed
nit
1 parent 1f9de70 commit f1251ab

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

fluss-common/src/main/java/org/apache/fluss/config/ConfigOptions.java

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1290,6 +1290,13 @@ public class ConfigOptions {
12901290
+ "Based on this target freshness, the Fluss service automatically moves data from the Fluss table and updates to the datalake table, so that the data in the datalake table is kept up to date within this target. "
12911291
+ "If the data does not need to be as fresh, you can specify a longer target freshness time to reduce costs.");
12921292

1293+
public static final ConfigOption<Boolean> TABLE_DATALAKE_AUTO_COMPACTION =
1294+
key("table.datalake.auto-compaction")
1295+
.booleanType()
1296+
.defaultValue(false)
1297+
.withDescription(
1298+
"If true, compaction will be triggered automatically when tiering service writes to the datalake. It is disabled by default.");
1299+
12931300
public static final ConfigOption<MergeEngineType> TABLE_MERGE_ENGINE =
12941301
key("table.merge-engine")
12951302
.enumType(MergeEngineType.class)

0 commit comments

Comments
 (0)