Skip to content

Commit

Permalink
[chore](config) temporary change fetch_rpc_timeout_seconds to 150s to…
Browse files Browse the repository at this point in the history
… solve rpc timeout

Rpc timeout is due to fetch phase acquire tablet lock, but the related PR(#26151) is now pending to merge to branch-2.0.
So change fetch_rpc_timeout_seconds from 30 to 150 to solve the problem temporarily
  • Loading branch information
eldenmoon committed Nov 28, 2023
1 parent 2a33535 commit f6663d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion be/src/common/config.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ DEFINE_Int32(doris_max_remote_scanner_thread_pool_thread_num, "-1");
DEFINE_Int32(doris_scanner_thread_pool_queue_size, "102400");
// default thrift client connect timeout(in seconds)
DEFINE_mInt32(thrift_connect_timeout_seconds, "3");
DEFINE_mInt32(fetch_rpc_timeout_seconds, "30");
DEFINE_mInt32(fetch_rpc_timeout_seconds, "150");
// default thrift client retry interval (in milliseconds)
DEFINE_mInt64(thrift_client_retry_interval_ms, "1000");
// max row count number for single scan range, used in segmentv1
Expand Down

0 comments on commit f6663d0

Please sign in to comment.