You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@doris.apache.org by GitBox <gi...@apache.org> on 2020/07/05 14:25:46 UTC

[GitHub] [incubator-doris] morningman commented on a change in pull request #4022: Add thrift_client_retry_interval_ms config in be for thrift client to avoid avalanche disaster in fe thrift server

morningman commented on a change in pull request #4022:
URL: https://github.com/apache/incubator-doris/pull/4022#discussion_r449883182



##########
File path: be/src/util/thrift_rpc_helper.cpp
##########
@@ -68,8 +69,9 @@ Status ThriftRpcHelper::rpc(
         try {
             callback(client);
         } catch (apache::thrift::transport::TTransportException& e) {
-            LOG(WARNING) << "retrying call frontend service, address="
+            LOG(WARNING) << "retrying call frontend service after " << 1 << " ms, address="

Review comment:
       ```suggestion
               LOG(WARNING) << "retrying call frontend service after " << config::thrift_client_retry_interval_ms << " ms, address="
   ```




----------------------------------------------------------------
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.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org
For additional commands, e-mail: commits-help@doris.apache.org