f7753 commented on code in PR #6218:
URL: https://github.com/apache/hudi/pull/6218#discussion_r929872960
##########
hudi-flink-datasource/hudi-flink/src/main/java/org/apache/hudi/configuration/FlinkOptions.java:
##########
@@ -487,6 +487,13 @@ private FlinkOptions() {
.defaultValue(true) // default true for MOR write
.withDescription("Schedule the compaction plan, enabled by default for
MOR");
+ public static final ConfigOption<Integer> WRITE_BULK_INSERT_MAX_PARALLELISM
= ConfigOptions
+ .key("write.bulk_insert.max.parallelism")
+ .intType()
+
.defaultValue(StreamGraphGenerator.DEFAULT_LOWER_BOUND_MAX_PARALLELISM)
+ .withDescription("The maximum number of flink write tasks, since the
original " +
Review Comment:
Thank you for your advice:)
Yep, I was thinking about it at first sight, but after referring to
`StreamGraphGenerator.DEFAULT_LOWER_BOUND_MAX_PARALLELISM`, it seems that the
number can not be changed since it comes from
`org.apache.flink.runtime.state.KeyGroupRangeAssignment.DEFAULT_LOWER_BOUND_MAX_PARALLELISM`,
which was hard coded to 128.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]