1
0

[MINOR] Correct the comment for the parallelism of tasks in FlinkOptions (#3634)

This commit is contained in:
SteNicholas
2021-09-10 13:42:11 +08:00
committed by GitHub
parent 56d08fbe70
commit 512ca42d14

View File

@@ -325,19 +325,19 @@ public class FlinkOptions extends HoodieConfig {
.key("write.index_bootstrap.tasks")
.intType()
.noDefaultValue()
.withDescription("Parallelism of tasks that do index bootstrap, default is 4");
.withDescription("Parallelism of tasks that do index bootstrap, default is the parallelism of the environment");
public static final ConfigOption<Integer> BUCKET_ASSIGN_TASKS = ConfigOptions
.key("write.bucket_assign.tasks")
.intType()
.noDefaultValue()
.withDescription("Parallelism of tasks that do bucket assign, default is 4");
.withDescription("Parallelism of tasks that do bucket assign, default is the parallelism of the environment");
public static final ConfigOption<Integer> WRITE_TASKS = ConfigOptions
.key("write.tasks")
.intType()
.defaultValue(4)
.withDescription("Parallelism of tasks that do actual write, default is 4");
.noDefaultValue()
.withDescription("Parallelism of tasks that do actual write, default is the parallelism of the environment");
public static final ConfigOption<Double> WRITE_TASK_MAX_SIZE = ConfigOptions
.key("write.task.max.size")