mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-12-03 04:19:18 +08:00
817182f48f
Signed-off-by: godchen0212 <qingxiang.chen@zilliz.com>
73 lines
2.3 KiB
Go
73 lines
2.3 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 querynode
|
|
|
|
/*
|
|
|
|
#cgo CFLAGS: -I${SRCDIR}/../core/output/include
|
|
|
|
#cgo LDFLAGS: -L${SRCDIR}/../core/output/lib -lmilvus_segcore -Wl,-rpath=${SRCDIR}/../core/output/lib
|
|
|
|
#include "segcore/collection_c.h"
|
|
#include "segcore/segment_c.h"
|
|
|
|
*/
|
|
import "C"
|
|
import (
|
|
"go.uber.org/zap"
|
|
|
|
"github.com/milvus-io/milvus/internal/log"
|
|
)
|
|
|
|
// Partition is a logical division of Collection and can be considered as an attribute of Segment.
|
|
type Partition struct {
|
|
collectionID UniqueID
|
|
partitionID UniqueID
|
|
segmentIDs []UniqueID
|
|
}
|
|
|
|
// ID returns the identity of the partition.
|
|
func (p *Partition) ID() UniqueID {
|
|
return p.partitionID
|
|
}
|
|
|
|
func (p *Partition) addSegmentID(segmentID UniqueID) {
|
|
p.segmentIDs = append(p.segmentIDs, segmentID)
|
|
log.Debug("add a segment to replica", zap.Int64("collectionID", p.collectionID), zap.Int64("partitionID", p.partitionID), zap.Int64("segmentID", segmentID))
|
|
}
|
|
|
|
func (p *Partition) removeSegmentID(segmentID UniqueID) {
|
|
tmpIDs := make([]UniqueID, 0)
|
|
for _, id := range p.segmentIDs {
|
|
if id != segmentID {
|
|
tmpIDs = append(tmpIDs, id)
|
|
}
|
|
}
|
|
p.segmentIDs = tmpIDs
|
|
log.Debug("remove a segment from replica", zap.Int64("collectionID", p.collectionID), zap.Int64("partitionID", p.partitionID), zap.Int64("segmentID", segmentID))
|
|
}
|
|
|
|
func newPartition(collectionID UniqueID, partitionID UniqueID) *Partition {
|
|
var newPartition = &Partition{
|
|
collectionID: collectionID,
|
|
partitionID: partitionID,
|
|
}
|
|
|
|
log.Debug("create partition", zap.Int64("partitionID", partitionID))
|
|
return newPartition
|
|
}
|