We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4805d13 commit 19d5e8aCopy full SHA for 19d5e8a
common/src/main/java/org/apache/uniffle/common/config/RssClientConf.java
@@ -125,6 +125,12 @@ public class RssClientConf {
125
.defaultValue(3)
126
.withDescription("When we fail to send RPC calls, we will retry for maxAttempts times.");
127
128
+ public static final ConfigOption<Long> RPC_RETRY_BACKOFF_MS =
129
+ ConfigOptions.key("rss.client.rpc.retry.backoff.ms")
130
+ .longType()
131
+ .defaultValue(500L)
132
+ .withDescription("The backoff in milliseconds for RPC retries");
133
+
134
public static final ConfigOption<Integer> RPC_NETTY_PAGE_SIZE =
135
ConfigOptions.key("rss.client.rpc.netty.pageSize")
136
.intType()
0 commit comments