zuston commented on code in PR #2408:
URL: https://github.com/apache/uniffle/pull/2408#discussion_r2009375944
##########
common/src/main/java/org/apache/uniffle/common/config/RssClientConf.java:
##########
@@ -271,6 +272,19 @@ public class RssClientConf {
.withDescription(
"Whether to support rss client block send failure retry, default
value is false.");
+ public static final ConfigOption<PartitionSplitMode>
RSS_CLIENT_PARTITION_SPLIT_MODE =
+ ConfigOptions.key("rss.client.reassign.partitionSplitMode")
+ .enumType(PartitionSplitMode.class)
+ .defaultValue(PartitionSplitMode.PIPELINE)
+ .withDescription("The partition split mode. default is PIPELINE.");
+
+ public static final ConfigOption<Integer>
RSS_CLIENT_PARTITION_SPLIT_LOAD_BALANCE_SERVER_NUMBER =
+
ConfigOptions.key("rss.client.reassign.partitionSplitLoadBalanceServerNumber")
+ .intType()
+ .defaultValue(10)
Review Comment:
sounds good, but this will refactor the coordinator rpc. So I will remain
this optimization into another PR.
--
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]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]