[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:
zhengyu
2023-12-26 16:22:52 +08:00
committed by GitHub
parent d672e321cc
commit 1964a77d6c
6 changed files with 6 additions and 6 deletions

View File

@ -1325,7 +1325,7 @@ public class SessionVariable implements Serializable, Writable {
public boolean enableMemtableOnSinkNode = true;
@VariableMgr.VarAttr(name = LOAD_STREAM_PER_NODE)
public int loadStreamPerNode = 20;
public int loadStreamPerNode = 60;
@VariableMgr.VarAttr(name = GROUP_COMMIT)
public String groupCommit = "off_mode";