mirror of https://github.com/milvus-io/milvus.git
Add the `gracefulStopTimeout` config for the node (#21449)
Signed-off-by: SimFG <bang.fu@zilliz.com>pull/21453/head
parent
dffc47a6b6
commit
037ccccfcc
|
@ -202,6 +202,7 @@ queryNode:
|
|||
loadMemoryUsageFactor: 3 # The multiply factor of calculating the memory usage while loading segments
|
||||
enableDisk: true # enable querynode load disk index, and search on disk index
|
||||
maxDiskUsagePercentage: 95
|
||||
gracefulStopTimeout: 30
|
||||
|
||||
stats:
|
||||
publishInterval: 1000 # Interval for querynode to report node information (milliseconds)
|
||||
|
@ -260,6 +261,7 @@ indexNode:
|
|||
port: 21121
|
||||
enableDisk: true # enable index node build disk vector index
|
||||
maxDiskUsagePercentage: 95
|
||||
gracefulStopTimeout: 30
|
||||
|
||||
scheduler:
|
||||
buildParallel: 1
|
||||
|
|
Loading…
Reference in New Issue