You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: fluss-common/src/main/java/com/alibaba/fluss/config/ConfigOptions.java
+5-4Lines changed: 5 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -965,21 +965,22 @@ public class ConfigOptions {
965
965
.defaultValue(2)
966
966
.withDescription(
967
967
"The number of partitions to pre-create for auto created partitions in each check for auto partition. "
968
-
+ "The default value is 2, which means 2 partitions will be pre-created. If the 'table.auto-partition.time-unit' is 'DAY'(default), one precreated partition is for today and another one is for tomorrow. "
969
968
+ "For example, if the current check time is 2024-11-11 and the value is "
970
969
+ "configured as 3, then partitions 20241111, 20241112, 20241113 will be pre-created. "
971
-
+ "If any one partition exists, it'll skip creating the partition.");
970
+
+ "If any one partition exists, it'll skip creating the partition. "
971
+
+ "The default value is 2, which means 2 partitions will be pre-created. "
972
+
+ "If the 'table.auto-partition.time-unit' is 'DAY'(default), one precreated partition is for today and another one is for tomorrow.");
0 commit comments