This is an automated email from the ASF dual-hosted git repository.
kxiao pushed a commit to branch branch-2.0
in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/branch-2.0 by this push:
new 11f616ff342 [fix](retry) Set query encounter rpc exception default
retry times to 3 (#28555) (#32593)
11f616ff342 is described below
commit 11f616ff34268b47d29d28846461a220857d445b
Author: deardeng <[email protected]>
AuthorDate: Thu Mar 21 19:06:40 2024 +0800
[fix](retry) Set query encounter rpc exception default retry times to 3
(#28555) (#32593)
---
fe/fe-common/src/main/java/org/apache/doris/common/Config.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/fe/fe-common/src/main/java/org/apache/doris/common/Config.java
b/fe/fe-common/src/main/java/org/apache/doris/common/Config.java
index d39b0576a15..e3aa4e368c3 100644
--- a/fe/fe-common/src/main/java/org/apache/doris/common/Config.java
+++ b/fe/fe-common/src/main/java/org/apache/doris/common/Config.java
@@ -890,7 +890,7 @@ public class Config extends ConfigBase {
* You may reduce this number to avoid Avalanche disaster.
*/
@ConfField(mutable = true)
- public static int max_query_retry_time = 1;
+ public static int max_query_retry_time = 3;
/**
* The number of point query retries in executor.
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]