This is an automated email from the ASF dual-hosted git repository. dataroaring pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/master by this push: new d76e2e2254 [chore](config) ignore_eovercrowded to be true by default (#19282) d76e2e2254 is described below commit d76e2e2254dcdf0d1a2e6c3b640510779aa9e486 Author: Yongqiang YANG <98214048+dataroar...@users.noreply.github.com> AuthorDate: Wed May 17 16:21:32 2023 +0800 [chore](config) ignore_eovercrowded to be true by default (#19282) --- be/src/common/config.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/be/src/common/config.cpp b/be/src/common/config.cpp index 879d7cb134..3929fcca68 100644 --- a/be/src/common/config.cpp +++ b/be/src/common/config.cpp @@ -454,7 +454,7 @@ DEFINE_Int32(tablet_writer_open_rpc_timeout_sec, "60"); // When there is mixed deployment in the upgraded version, it needs to be set to false. DEFINE_mBool(enable_lazy_open_partition, "true"); // You can ignore brpc error '[E1011]The server is overcrowded' when writing data. -DEFINE_mBool(tablet_writer_ignore_eovercrowded, "false"); +DEFINE_mBool(tablet_writer_ignore_eovercrowded, "true"); DEFINE_mInt32(slave_replica_writer_rpc_timeout_sec, "60"); // Whether to enable stream load record function, the default is false. // False: disable stream load record --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org