diff --git a/configs/milvus.yaml b/configs/milvus.yaml index a16eb1f52b055..f51990b9a08d2 100644 --- a/configs/milvus.yaml +++ b/configs/milvus.yaml @@ -420,7 +420,7 @@ dataCoord: channel: 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 - 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 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 diff --git a/pkg/util/paramtable/component_param.go b/pkg/util/paramtable/component_param.go index 90ee8c5a5ccc7..55a90224e0761 100644 --- a/pkg/util/paramtable/component_param.go +++ b/pkg/util/paramtable/component_param.go @@ -2959,8 +2959,8 @@ func (p *dataCoordConfig) init(base *BaseTable) { p.LegacyVersionWithoutRPCWatch = ParamItem{ Key: "dataCoord.channel.legacyVersionWithoutRPCWatch", - Version: "2.4.0", - DefaultValue: "2.4.0", + Version: "2.4.1", + 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", Export: true, }