mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-12-02 20:09:57 +08:00
b1eacb2ae8
issue: https://github.com/milvus-io/milvus/issues/25309 Signed-off-by: yiwangdr <yiwangdr@gmail.com>
64 lines
2.5 KiB
Go
64 lines
2.5 KiB
Go
// Licensed to the LF AI & Data foundation under one
|
|
// or more contributor license agreements. See the NOTICE file
|
|
// distributed with this work for additional information
|
|
// regarding copyright ownership. The ASF licenses this file
|
|
// to you under the Apache License, Version 2.0 (the
|
|
// "License"); you may not use this file except in compliance
|
|
// with the License. You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
package datacoord
|
|
|
|
// ChannelPolicyFactory is the abstract factory that creates policies for channel manager.
|
|
type ChannelPolicyFactory interface {
|
|
// NewRegisterPolicy creates a new register policy.
|
|
NewRegisterPolicy() RegisterPolicy
|
|
// NewDeregisterPolicy creates a new deregister policy.
|
|
NewDeregisterPolicy() DeregisterPolicy
|
|
// NewAssignPolicy creates a new channel assign policy.
|
|
NewAssignPolicy() ChannelAssignPolicy
|
|
// NewReassignPolicy creates a new channel reassign policy.
|
|
NewReassignPolicy() ChannelReassignPolicy
|
|
// NewBalancePolicy creates a new channel balance policy.
|
|
NewBalancePolicy() BalanceChannelPolicy
|
|
}
|
|
|
|
// ChannelPolicyFactoryV1 equal to policy batch
|
|
type ChannelPolicyFactoryV1 struct{}
|
|
|
|
// NewChannelPolicyFactoryV1 helper function creates a Channel policy factory v1 from kv.
|
|
func NewChannelPolicyFactoryV1() *ChannelPolicyFactoryV1 {
|
|
return &ChannelPolicyFactoryV1{}
|
|
}
|
|
|
|
// NewRegisterPolicy implementing ChannelPolicyFactory returns BufferChannelAssignPolicy.
|
|
func (f *ChannelPolicyFactoryV1) NewRegisterPolicy() RegisterPolicy {
|
|
return AvgAssignRegisterPolicy
|
|
}
|
|
|
|
// NewDeregisterPolicy implementing ChannelPolicyFactory returns AvgAssignUnregisteredChannels.
|
|
func (f *ChannelPolicyFactoryV1) NewDeregisterPolicy() DeregisterPolicy {
|
|
return AvgAssignUnregisteredChannels
|
|
}
|
|
|
|
// NewAssignPolicy implementing ChannelPolicyFactory returns AverageAssignPolicy.
|
|
func (f *ChannelPolicyFactoryV1) NewAssignPolicy() ChannelAssignPolicy {
|
|
return AverageAssignPolicy
|
|
}
|
|
|
|
// NewReassignPolicy implementing ChannelPolicyFactory returns AverageReassignPolicy.
|
|
func (f *ChannelPolicyFactoryV1) NewReassignPolicy() ChannelReassignPolicy {
|
|
return AverageReassignPolicy
|
|
}
|
|
|
|
func (f *ChannelPolicyFactoryV1) NewBalancePolicy() BalanceChannelPolicy {
|
|
return AvgBalanceChannelPolicy
|
|
}
|