diff --git a/configs/milvus.yaml b/configs/milvus.yaml index fd20fccef9..e154a5d719 100644 --- a/configs/milvus.yaml +++ b/configs/milvus.yaml @@ -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 diff --git a/pkg/util/paramtable/component_param.go b/pkg/util/paramtable/component_param.go index d283d54146..869a1ffc63 100644 --- a/pkg/util/paramtable/component_param.go +++ b/pkg/util/paramtable/component_param.go @@ -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, }