diff --git a/configs/milvus.yaml b/configs/milvus.yaml index 6306eeb881..6b8b6f6c6f 100644 --- a/configs/milvus.yaml +++ b/configs/milvus.yaml @@ -664,7 +664,7 @@ dataCoord: taskQueueCapacity: 100000 # compaction task queue size rpcTimeout: 10 maxParallelTaskNum: -1 # Deprecated, see datanode.slot.slotCap - dropTolerance: 86400 # Compaction task will be cleaned after finish longer than this time(in seconds) + dropTolerance: 3600 # Compaction task will be cleaned after finish longer than this time(in seconds) gcInterval: 1800 # The time interval in seconds for compaction gc scheduleInterval: 500 # The time interval in milliseconds for scheduling compaction tasks. If the configuration setting is below 100ms, it will be adjusted upwards to 100ms mix: diff --git a/pkg/util/paramtable/component_param.go b/pkg/util/paramtable/component_param.go index faef4d318b..2e8f81da13 100644 --- a/pkg/util/paramtable/component_param.go +++ b/pkg/util/paramtable/component_param.go @@ -4622,7 +4622,7 @@ During compaction, the size of segment # of rows is able to exceed segment max # Key: "dataCoord.compaction.dropTolerance", Version: "2.4.2", Doc: "Compaction task will be cleaned after finish longer than this time(in seconds)", - DefaultValue: "86400", + DefaultValue: "3600", Export: true, } p.CompactionDropToleranceInSeconds.Init(base.mgr)