mirror of https://github.com/milvus-io/milvus.git
fix: LegacyVersionWithoutRPCWatch default value to 2.4.1 (#34185)
See also: #31933 pr: #34184 --------- Signed-off-by: yangxuan <xuan.yang@zilliz.com>pull/34297/head
parent
a3fdd02586
commit
4ebdccd160
|
@ -419,7 +419,7 @@ dataCoord:
|
||||||
channel:
|
channel:
|
||||||
watchTimeoutInterval: 300 # Timeout on watching channels (in seconds). Datanode tickler update watch progress will reset timeout timer.
|
watchTimeoutInterval: 300 # Timeout on watching channels (in seconds). Datanode tickler update watch progress will reset timeout timer.
|
||||||
balanceWithRpc: true # Whether to enable balance with RPC, default to use etcd watch
|
balanceWithRpc: true # Whether to enable balance with RPC, default to use etcd watch
|
||||||
legacyVersionWithoutRPCWatch: 2.4.0 # Datanodes <= this version are considered as legacy nodes, which doesn't have rpc based watch(). This is only used during rolling upgrade where legacy nodes won't get new channels
|
legacyVersionWithoutRPCWatch: 2.4.1 # Datanodes <= this version are considered as legacy nodes, which doesn't have rpc based watch(). This is only used during rolling upgrade where legacy nodes won't get new channels
|
||||||
balanceSilentDuration: 300 # The duration after which the channel manager start background channel balancing
|
balanceSilentDuration: 300 # The duration after which the channel manager start background channel balancing
|
||||||
balanceInterval: 360 # The interval with which the channel manager check dml channel balance status
|
balanceInterval: 360 # The interval with which the channel manager check dml channel balance status
|
||||||
checkInterval: 1 # The interval in seconds with which the channel manager advances channel states
|
checkInterval: 1 # The interval in seconds with which the channel manager advances channel states
|
||||||
|
|
|
@ -2871,8 +2871,8 @@ func (p *dataCoordConfig) init(base *BaseTable) {
|
||||||
|
|
||||||
p.LegacyVersionWithoutRPCWatch = ParamItem{
|
p.LegacyVersionWithoutRPCWatch = ParamItem{
|
||||||
Key: "dataCoord.channel.legacyVersionWithoutRPCWatch",
|
Key: "dataCoord.channel.legacyVersionWithoutRPCWatch",
|
||||||
Version: "2.4.0",
|
Version: "2.4.1",
|
||||||
DefaultValue: "2.4.0",
|
DefaultValue: "2.4.1",
|
||||||
Doc: "Datanodes <= this version are considered as legacy nodes, which doesn't have rpc based watch(). This is only used during rolling upgrade where legacy nodes won't get new channels",
|
Doc: "Datanodes <= this version are considered as legacy nodes, which doesn't have rpc based watch(). This is only used during rolling upgrade where legacy nodes won't get new channels",
|
||||||
Export: true,
|
Export: true,
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue