reduce compact parallel task num (#27899)

Signed-off-by: Wei Liu <wei.liu@zilliz.com>
This commit is contained in:
wei liu 2023-10-25 09:40:12 +08:00 committed by GitHub
parent e0222b2ce3
commit 40723a292e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -375,7 +375,7 @@ dataCoord:
compaction:
enableAutoCompaction: true
rpcTimeout: 10 # compaction rpc request timeout in seconds
maxParallelTaskNum: 100 # max parallel compaction task number
maxParallelTaskNum: 10 # max parallel compaction task number
indexBasedCompaction: true
enableGarbageCollection: true

View File

@ -2188,7 +2188,7 @@ the number of binlog file reaches to max value.`,
p.CompactionMaxParallelTasks = ParamItem{
Key: "dataCoord.compaction.maxParallelTaskNum",
Version: "2.2.12",
DefaultValue: "100",
DefaultValue: "10",
Export: true,
}
p.CompactionMaxParallelTasks.Init(base.mgr)