deardeng commented on code in PR #31749:
URL: https://github.com/apache/doris/pull/31749#discussion_r1519312347
##########
fe/fe-core/src/main/java/org/apache/doris/qe/StmtExecutor.java:
##########
@@ -708,6 +720,10 @@ private void handleQueryWithRetry(TUniqueId queryId)
throws Exception {
syncJournalIfNeeded();
int retryTime = Config.max_query_retry_time;
+ if (Config.isCloudMode()) {
+ // be core and be restarted, need retry more times
+ retryTime = Config.cloud_query_failed_retry_times;
Review Comment:
可以继续复用max_query_retry_time。当时不想和社区的搅合一起。所以新开个新的参数。现在要往里面合的话,可以原来的那个配置
--
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]