make net_thread_count adaptive

This commit is contained in:
xs0
2021-09-01 23:13:11 +08:00
committed by wangzelin.wzl
parent 7870375daf
commit ddecfdd737
2 changed files with 7 additions and 3 deletions

View File

@ -59,8 +59,8 @@ DEF_TIME(internal_sql_execute_timeout, OB_CLUSTER_PARAMETER, "30s", "[1000us, 10
"the number of microseconds an internal DML request is permitted to "
"execute before it is terminated. Range: [1000us, 10m]",
ObParameterAttr(Section::OBSERVER, Source::DEFAULT, EditLevel::DYNAMIC_EFFECTIVE));
DEF_INT(net_thread_count, OB_CLUSTER_PARAMETER, "12", "[1,100]",
"the number of rpc/mysql I/O threads for Libeasy. Range: [1, 100] in integer",
DEF_INT(net_thread_count, OB_CLUSTER_PARAMETER, "0", "[0,128]",
"the number of rpc/mysql I/O threads for Libeasy. Range: [0, 128] in integer, 0 stands for max(6, CPU_NUM/8)",
ObParameterAttr(Section::OBSERVER, Source::DEFAULT, EditLevel::STATIC_EFFECTIVE));
DEF_INT(high_priority_net_thread_count, OB_CLUSTER_PARAMETER, "0", "[0,100]",
"the number of rpc I/O threads for high priority messages, 0 means set off. Range: [0, 100] in integer",