mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-12-03 04:19:18 +08:00
b9f076bffc
Signed-off-by: yangxuan <xuan.yang@zilliz.com>
164 lines
4.2 KiB
Go
164 lines
4.2 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
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
"sync"
|
|
|
|
"go.uber.org/zap"
|
|
|
|
"github.com/milvus-io/milvus/internal/log"
|
|
)
|
|
|
|
// TSafeReplicaInterface is the interface wrapper of tSafeReplica
|
|
type TSafeReplicaInterface interface {
|
|
getTSafe(vChannel Channel) (Timestamp, error)
|
|
setTSafe(vChannel Channel, id UniqueID, timestamp Timestamp) error
|
|
addTSafe(vChannel Channel)
|
|
removeTSafe(vChannel Channel) bool
|
|
registerTSafeWatcher(vChannel Channel, watcher *tSafeWatcher) error
|
|
removeRecord(vChannel Channel, partitionID UniqueID) error
|
|
}
|
|
|
|
type tSafeRef struct {
|
|
tSafer tSafer
|
|
ref int
|
|
}
|
|
|
|
// tSafeReplica implements `TSafeReplicaInterface` interface.
|
|
type tSafeReplica struct {
|
|
mu sync.Mutex // guards tSafes
|
|
tSafes map[Channel]*tSafeRef // map[vChannel]tSafeRef
|
|
ctx context.Context
|
|
}
|
|
|
|
func (t *tSafeReplica) getTSafe(vChannel Channel) (Timestamp, error) {
|
|
t.mu.Lock()
|
|
defer t.mu.Unlock()
|
|
safer, err := t.getTSaferPrivate(vChannel)
|
|
if err != nil {
|
|
//log.Warn("get tSafe failed",
|
|
// zap.Any("channel", vChannel),
|
|
// zap.Error(err),
|
|
//)
|
|
return 0, err
|
|
}
|
|
return safer.get(), nil
|
|
}
|
|
|
|
func (t *tSafeReplica) setTSafe(vChannel Channel, id UniqueID, timestamp Timestamp) error {
|
|
t.mu.Lock()
|
|
defer t.mu.Unlock()
|
|
safer, err := t.getTSaferPrivate(vChannel)
|
|
if err != nil {
|
|
//log.Warn("set tSafe failed", zap.Error(err))
|
|
return err
|
|
}
|
|
safer.set(id, timestamp)
|
|
return nil
|
|
}
|
|
|
|
func (t *tSafeReplica) getTSaferPrivate(vChannel Channel) (tSafer, error) {
|
|
if _, ok := t.tSafes[vChannel]; !ok {
|
|
err := errors.New("cannot found tSafer, vChannel = " + vChannel)
|
|
//log.Warn(err.Error())
|
|
return nil, err
|
|
}
|
|
return t.tSafes[vChannel].tSafer, nil
|
|
}
|
|
|
|
func (t *tSafeReplica) addTSafe(vChannel Channel) {
|
|
t.mu.Lock()
|
|
defer t.mu.Unlock()
|
|
if _, ok := t.tSafes[vChannel]; !ok {
|
|
t.tSafes[vChannel] = &tSafeRef{
|
|
tSafer: newTSafe(t.ctx, vChannel),
|
|
ref: 1,
|
|
}
|
|
t.tSafes[vChannel].tSafer.start()
|
|
log.Debug("add tSafe done",
|
|
zap.Any("channel", vChannel),
|
|
zap.Any("count", t.tSafes[vChannel].ref),
|
|
)
|
|
} else {
|
|
t.tSafes[vChannel].ref++
|
|
log.Debug("tSafe has been existed",
|
|
zap.Any("channel", vChannel),
|
|
zap.Any("count", t.tSafes[vChannel].ref),
|
|
)
|
|
}
|
|
}
|
|
|
|
func (t *tSafeReplica) removeTSafe(vChannel Channel) bool {
|
|
t.mu.Lock()
|
|
defer t.mu.Unlock()
|
|
if _, ok := t.tSafes[vChannel]; !ok {
|
|
return false
|
|
}
|
|
isRemoved := false
|
|
t.tSafes[vChannel].ref--
|
|
log.Debug("reduce tSafe reference count",
|
|
zap.Any("vChannel", vChannel),
|
|
zap.Any("count", t.tSafes[vChannel].ref),
|
|
)
|
|
if t.tSafes[vChannel].ref == 0 {
|
|
safer, err := t.getTSaferPrivate(vChannel)
|
|
if err != nil {
|
|
log.Warn(err.Error())
|
|
return false
|
|
}
|
|
log.Debug("remove tSafe replica",
|
|
zap.Any("vChannel", vChannel),
|
|
)
|
|
safer.close()
|
|
delete(t.tSafes, vChannel)
|
|
isRemoved = true
|
|
}
|
|
return isRemoved
|
|
}
|
|
|
|
func (t *tSafeReplica) removeRecord(vChannel Channel, partitionID UniqueID) error {
|
|
t.mu.Lock()
|
|
defer t.mu.Unlock()
|
|
safer, err := t.getTSaferPrivate(vChannel)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
safer.removeRecord(partitionID)
|
|
return nil
|
|
}
|
|
|
|
func (t *tSafeReplica) registerTSafeWatcher(vChannel Channel, watcher *tSafeWatcher) error {
|
|
t.mu.Lock()
|
|
defer t.mu.Unlock()
|
|
safer, err := t.getTSaferPrivate(vChannel)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
return safer.registerTSafeWatcher(watcher)
|
|
}
|
|
|
|
func newTSafeReplica(ctx context.Context) TSafeReplicaInterface {
|
|
var replica TSafeReplicaInterface = &tSafeReplica{
|
|
tSafes: make(map[string]*tSafeRef),
|
|
ctx: ctx,
|
|
}
|
|
return replica
|
|
}
|