This is an automated email from the ASF dual-hosted git repository.
yiguolei 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 e146969376 [Fix](config) delete unuse lazy open config #22136
e146969376 is described below
commit e14696937674d1c9a5b4a341c39ef731cc6b22a4
Author: HHoflittlefish777 <[email protected]>
AuthorDate: Mon Jul 24 15:02:34 2023 +0800
[Fix](config) delete unuse lazy open config #22136
---
be/src/common/config.cpp | 3 ---
be/src/common/config.h | 3 ---
2 files changed, 6 deletions(-)
diff --git a/be/src/common/config.cpp b/be/src/common/config.cpp
index fec4662cd4..c727202ce3 100644
--- a/be/src/common/config.cpp
+++ b/be/src/common/config.cpp
@@ -472,9 +472,6 @@ DEFINE_mInt32(streaming_load_rpc_max_alive_time_sec,
"1200");
// the timeout of a rpc to open the tablet writer in remote BE.
// short operation time, can set a short timeout
DEFINE_Int32(tablet_writer_open_rpc_timeout_sec, "60");
-// The configuration is used to enable lazy open feature, and the default
value is false.
-// When there is mixed deployment in the upgraded version, it needs to be set
to false.
-DEFINE_mBool(enable_lazy_open_partition, "false");
// You can ignore brpc error '[E1011]The server is overcrowded' when writing
data.
DEFINE_mBool(tablet_writer_ignore_eovercrowded, "true");
DEFINE_mInt32(slave_replica_writer_rpc_timeout_sec, "60");
diff --git a/be/src/common/config.h b/be/src/common/config.h
index 50b391ff4b..05d7fcc658 100644
--- a/be/src/common/config.h
+++ b/be/src/common/config.h
@@ -512,9 +512,6 @@ DECLARE_mInt32(streaming_load_rpc_max_alive_time_sec);
// the timeout of a rpc to open the tablet writer in remote BE.
// short operation time, can set a short timeout
DECLARE_Int32(tablet_writer_open_rpc_timeout_sec);
-// The configuration is used to enable lazy open feature, and the default
value is false.
-// When there is mixed deployment in the upgraded version, it needs to be set
to false.
-DECLARE_mBool(enable_lazy_open_partition);
// You can ignore brpc error '[E1011]The server is overcrowded' when writing
data.
DECLARE_mBool(tablet_writer_ignore_eovercrowded);
DECLARE_mInt32(slave_replica_writer_rpc_timeout_sec);
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]