mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-11-30 02:48:45 +08:00
enhance: Enlarge default datanode sync parallel to 256 (#30270)
See also #27675 After supporting control sync parallel in datanode globally, the shall change default value to a more suitable value for most use cases. Signed-off-by: Congqi Xia <congqi.xia@zilliz.com>
This commit is contained in:
parent
199c198a55
commit
7ced0af197
@ -445,7 +445,7 @@ dataNode:
|
||||
flowGraph:
|
||||
maxQueueLength: 16 # Maximum length of task queue in flowgraph
|
||||
maxParallelism: 1024 # Maximum number of tasks executed in parallel in the flowgraph
|
||||
maxParallelSyncTaskNum: 6 # Maximum number of sync tasks executed in parallel in each flush manager
|
||||
maxParallelSyncMgrTasks: 256 #The max concurrent sync task number of datanode sync mgr globally
|
||||
skipMode:
|
||||
# when there are only timetick msg in flowgraph for a while (longer than coldTime),
|
||||
# flowGraph will turn on skip mode to skip most timeticks to reduce cost, especially there are a lot of channels
|
||||
|
@ -2888,7 +2888,7 @@ func (p *dataNodeConfig) init(base *BaseTable) {
|
||||
p.MaxParallelSyncMgrTasks = ParamItem{
|
||||
Key: "dataNode.dataSync.maxParallelSyncMgrTasks",
|
||||
Version: "2.3.4",
|
||||
DefaultValue: "64",
|
||||
DefaultValue: "256",
|
||||
Doc: "The max concurrent sync task number of datanode sync mgr globally",
|
||||
Export: true,
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user