[Enhancement] enable pk parallel execution by default (#63821)
Signed-off-by: luohaha <18810541851@163.com>
This commit is contained in:
parent
0dfb447b23
commit
53eb82341c
|
|
@ -412,7 +412,7 @@ CONF_Bool(enable_event_based_compaction_framework, "true");
|
|||
CONF_Bool(enable_size_tiered_compaction_strategy, "true");
|
||||
CONF_mBool(enable_pk_size_tiered_compaction_strategy, "true");
|
||||
// Enable parallel execution within tablet for primary key tables.
|
||||
CONF_mBool(enable_pk_parallel_execution, "false");
|
||||
CONF_mBool(enable_pk_parallel_execution, "true");
|
||||
// The minimum threshold of data size for enabling pk parallel execution.
|
||||
// Default is 300MB.
|
||||
CONF_mInt64(pk_parallel_execution_threshold_bytes, "314572800");
|
||||
|
|
|
|||
|
|
@ -1271,7 +1271,7 @@ curl http://<BE_IP>:<BE_HTTP_PORT>/varz
|
|||
|
||||
##### enable_pk_parallel_execution
|
||||
|
||||
- Default: false
|
||||
- Default: true
|
||||
- Type: Boolean
|
||||
- Unit: -
|
||||
- Is mutable: Yes
|
||||
|
|
|
|||
|
|
@ -986,7 +986,7 @@ curl http://<BE_IP>:<BE_HTTP_PORT>/varz
|
|||
|
||||
##### enable_pk_parallel_execution
|
||||
|
||||
- デフォルト: false
|
||||
- デフォルト: true
|
||||
- タイプ: Boolean
|
||||
- 単位: -
|
||||
- 可変: はい
|
||||
|
|
|
|||
|
|
@ -1228,7 +1228,7 @@ curl http://<BE_IP>:<BE_HTTP_PORT>/varz
|
|||
|
||||
##### enable_pk_parallel_execution
|
||||
|
||||
- 默认值:false
|
||||
- 默认值:true
|
||||
- 类型:Boolean
|
||||
- 单位:-
|
||||
- 是否动态:是
|
||||
|
|
|
|||
Loading…
Reference in New Issue