mirror of https://github.com/milvus-io/milvus.git
enhance: Add unit(seconds) for new added connection manager param (#31023)
See also #31007 #31008 #31009 Signed-off-by: Congqi Xia <congqi.xia@zilliz.com>pull/31000/head
parent
b9775a1816
commit
8c2615f840
|
@ -208,8 +208,8 @@ proxy:
|
|||
ginLogging: true
|
||||
ginLogSkipPaths: "/" # skipped url path for gin log split by comma
|
||||
maxTaskNum: 1024 # max task number of proxy task queue
|
||||
connectionMgrCheckInterval: 120 # the interval time(in seconds) for connection manager to scan inactive client info
|
||||
connectionClientInfoTTL: 86400 # inactive client info TTL duration, in seconds
|
||||
connectionCheckIntervalSeconds: 120 # the interval time(in seconds) for connection manager to scan inactive client info
|
||||
connectionClientInfoTTLSeconds: 86400 # inactive client info TTL duration, in seconds
|
||||
accessLog:
|
||||
enable: false
|
||||
# Log filename, set as "" to use stdout.
|
||||
|
|
|
@ -1370,7 +1370,7 @@ please adjust in embedded Milvus: false`,
|
|||
p.GracefulStopTimeout.Init(base.mgr)
|
||||
|
||||
p.ConnectionCheckIntervalSeconds = ParamItem{
|
||||
Key: "proxy.connectionMgrCheckInterval",
|
||||
Key: "proxy.connectionCheckIntervalSeconds",
|
||||
Version: "2.3.11",
|
||||
Doc: "the interval time(in seconds) for connection manager to scan inactive client info",
|
||||
DefaultValue: "120",
|
||||
|
@ -1379,7 +1379,7 @@ please adjust in embedded Milvus: false`,
|
|||
p.ConnectionCheckIntervalSeconds.Init(base.mgr)
|
||||
|
||||
p.ConnectionClientInfoTTLSeconds = ParamItem{
|
||||
Key: "proxy.connectionClientInfoTTL",
|
||||
Key: "proxy.connectionClientInfoTTLSeconds",
|
||||
Version: "2.3.11",
|
||||
Doc: "inactive client info TTL duration, in seconds",
|
||||
DefaultValue: "86400",
|
||||
|
|
Loading…
Reference in New Issue