2021-08-25 11:41:52 +08:00
|
|
|
// Copyright (C) 2019-2020 Zilliz. All rights reserved.
|
|
|
|
//
|
|
|
|
// Licensed 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 datanode
|
|
|
|
|
|
|
|
import (
|
2021-08-28 10:12:00 +08:00
|
|
|
"encoding/binary"
|
|
|
|
"errors"
|
2021-08-25 11:41:52 +08:00
|
|
|
|
|
|
|
"go.uber.org/zap"
|
|
|
|
|
|
|
|
"github.com/milvus-io/milvus/internal/log"
|
|
|
|
)
|
|
|
|
|
|
|
|
type deleteNode struct {
|
|
|
|
BaseNode
|
|
|
|
|
|
|
|
replica Replica
|
|
|
|
}
|
|
|
|
|
2021-09-08 10:41:59 +08:00
|
|
|
func (dn *deleteNode) Name() string {
|
|
|
|
return "deleteNode"
|
2021-08-25 11:41:52 +08:00
|
|
|
}
|
|
|
|
|
2021-09-08 10:41:59 +08:00
|
|
|
func (dn *deleteNode) Close() {
|
|
|
|
log.Info("Flowgraph Delete Node closing")
|
|
|
|
}
|
2021-08-25 11:41:52 +08:00
|
|
|
|
2021-09-08 10:41:59 +08:00
|
|
|
func (dn *deleteNode) Operate(in []Msg) []Msg {
|
|
|
|
// log.Debug("deleteNode Operating")
|
2021-08-25 11:41:52 +08:00
|
|
|
|
2021-09-08 10:41:59 +08:00
|
|
|
if len(in) != 1 {
|
|
|
|
log.Warn("Invalid operate message input in deleteNode", zap.Int("input length", len(in)))
|
2021-08-25 11:41:52 +08:00
|
|
|
return []Msg{}
|
|
|
|
}
|
|
|
|
|
2021-09-08 10:41:59 +08:00
|
|
|
_, ok := in[0].(*MsgStreamMsg)
|
2021-08-25 11:41:52 +08:00
|
|
|
if !ok {
|
2021-09-08 10:41:59 +08:00
|
|
|
log.Warn("type assertion failed for MsgStreamMsg")
|
2021-08-25 11:41:52 +08:00
|
|
|
return []Msg{}
|
|
|
|
}
|
|
|
|
|
|
|
|
return []Msg{}
|
|
|
|
}
|
|
|
|
|
2021-08-28 10:12:00 +08:00
|
|
|
func getSegmentsByPKs(pks []int64, segments []*Segment) (map[int64][]int64, error) {
|
|
|
|
if pks == nil {
|
2021-09-08 10:41:59 +08:00
|
|
|
return nil, errors.New("pks is nil")
|
2021-08-28 10:12:00 +08:00
|
|
|
}
|
|
|
|
if segments == nil {
|
2021-09-08 10:41:59 +08:00
|
|
|
return nil, errors.New("segments is nil")
|
2021-08-28 10:12:00 +08:00
|
|
|
}
|
|
|
|
results := make(map[int64][]int64)
|
|
|
|
buf := make([]byte, 8)
|
|
|
|
for _, segment := range segments {
|
|
|
|
for _, pk := range pks {
|
|
|
|
binary.BigEndian.PutUint64(buf, uint64(pk))
|
|
|
|
exist := segment.pkFilter.Test(buf)
|
|
|
|
if exist {
|
|
|
|
results[segment.segmentID] = append(results[segment.segmentID], pk)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return results, nil
|
|
|
|
}
|
|
|
|
|
2021-09-08 10:41:59 +08:00
|
|
|
func newDeleteDNode(replica Replica) (*deleteNode, error) {
|
2021-08-25 11:41:52 +08:00
|
|
|
baseNode := BaseNode{}
|
|
|
|
baseNode.SetMaxParallelism(Params.FlowGraphMaxQueueLength)
|
|
|
|
|
2021-09-08 10:41:59 +08:00
|
|
|
if replica == nil {
|
|
|
|
return nil, errors.New("Nill input replica")
|
|
|
|
}
|
|
|
|
|
2021-08-25 11:41:52 +08:00
|
|
|
return &deleteNode{
|
|
|
|
BaseNode: baseNode,
|
|
|
|
replica: replica,
|
2021-09-08 10:41:59 +08:00
|
|
|
}, nil
|
2021-08-25 11:41:52 +08:00
|
|
|
}
|