diff --git a/hudi-flink/src/main/java/org/apache/hudi/configuration/FlinkOptions.java b/hudi-flink/src/main/java/org/apache/hudi/configuration/FlinkOptions.java index bdb58e424a67d..3a2e6152d79a5 100644 --- a/hudi-flink/src/main/java/org/apache/hudi/configuration/FlinkOptions.java +++ b/hudi-flink/src/main/java/org/apache/hudi/configuration/FlinkOptions.java @@ -335,19 +335,19 @@ private FlinkOptions() { .key("write.index_bootstrap.tasks") .intType() .noDefaultValue() - .withDescription("Parallelism of tasks that do index bootstrap, default is the parallelism of the environment"); + .withDescription("Parallelism of tasks that do index bootstrap, default is the parallelism of the execution environment"); public static final ConfigOption BUCKET_ASSIGN_TASKS = ConfigOptions .key("write.bucket_assign.tasks") .intType() .noDefaultValue() - .withDescription("Parallelism of tasks that do bucket assign, default is the parallelism of the environment"); + .withDescription("Parallelism of tasks that do bucket assign, default is the parallelism of the execution environment"); public static final ConfigOption WRITE_TASKS = ConfigOptions .key("write.tasks") .intType() - .noDefaultValue() - .withDescription("Parallelism of tasks that do actual write, default is the parallelism of the environment"); + .defaultValue(4) + .withDescription("Parallelism of tasks that do actual write, default is 4"); public static final ConfigOption WRITE_TASK_MAX_SIZE = ConfigOptions .key("write.task.max.size")