mirror of
https://gitee.com/milvus-io/milvus.git
synced 2025-12-06 17:18:35 +08:00
issue: #40638 - Add `ChannelID` for streaming replica in future. - Remove the pchannel count fair balance policy for streaming. - Add Score based vchannel fair balance policy for streaming. - Add pchannel stats manager to collect the stats of pchannel for balancer. - Add configuration and metrics for new balance policy --------- Signed-off-by: chyezh <chyezh@outlook.com>
11 lines
225 B
Go
11 lines
225 B
Go
//go:build test
|
|
// +build test
|
|
|
|
package channel
|
|
|
|
import "github.com/milvus-io/milvus/pkg/v2/util/syncutil"
|
|
|
|
func ResetStaticPChannelStatsManager() {
|
|
StaticPChannelStatsManager = syncutil.NewFuture[*PchannelStatsManager]()
|
|
}
|