[enhencement](config) change default memtable size & loadStreamPerNode & default load parallelism (#28977)
We change memtable size from 200MB to 100MB to achieve smoother flush performance. We change loadStreamPerNode from 20 to 60 to avoid stream rpc to be the bottleneck when enable memtable_on_sink_node. We change default s3&broker load parallelsim to make the most of CPUs on moderm multi-core systems. Signed-off-by: freemandealer <freeman.zhang1992@gmail.com>
This commit is contained in:
@ -144,7 +144,7 @@ public class Config extends ConfigBase {
|
||||
|
||||
@ConfField(mutable = true, masterOnly = true, description = {"broker load 时,单个节点上 load 执行计划的默认并行度",
|
||||
"The default parallelism of the load execution plan on a single node when the broker load is submitted"})
|
||||
public static int default_load_parallelism = 1;
|
||||
public static int default_load_parallelism = 8;
|
||||
|
||||
@ConfField(mutable = true, masterOnly = true, description = {
|
||||
"已完成或取消的导入作业信息的 label 会在这个时间后被删除。被删除的 label 可以被重用。",
|
||||
|
||||
Reference in New Issue
Block a user