[fix](sink) disable lazy-open partition by default (#19769)
Signed-off-by: freemandealer <freeman.zhang1992@gmail.com>
This commit is contained in:
@ -450,9 +450,9 @@ 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 true.
|
||||
// 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, "true");
|
||||
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");
|
||||
|
||||
@ -486,7 +486,7 @@ 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 true.
|
||||
// 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.
|
||||
|
||||
@ -1219,7 +1219,7 @@ Metrics: {"filtered_rows":0,"input_row_num":3346807,"input_rowsets_count":42,"in
|
||||
|
||||
* Type: bool
|
||||
* Description: When importing, most partitions may not need to be written, and lazy opening can be used to only open the partitions that need to be written.When there is mixed deployment in the upgraded version, it needs to be set to false.
|
||||
* Default value: true
|
||||
* Default value: false
|
||||
|
||||
#### `streaming_load_rpc_max_alive_time_sec`
|
||||
|
||||
|
||||
@ -1235,7 +1235,7 @@ Metrics: {"filtered_rows":0,"input_row_num":3346807,"input_rowsets_count":42,"in
|
||||
|
||||
* 类型:bool
|
||||
* 描述:导入时大部分partition可能都不需要写入,可以使用延迟打开的方式只打开需要写入的partition。升级版本出现混合部署的时候,需要设置为false。
|
||||
* 默认值:true
|
||||
* 默认值:false
|
||||
|
||||
#### `streaming_load_rpc_max_alive_time_sec`
|
||||
|
||||
|
||||
Reference in New Issue
Block a user