2021-04-19 15:16:33 +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.
|
|
|
|
|
2021-01-19 11:37:16 +08:00
|
|
|
package datanode
|
|
|
|
|
|
|
|
import (
|
2021-04-22 14:45:57 +08:00
|
|
|
"github.com/milvus-io/milvus/internal/util/flowgraph"
|
2021-02-26 10:13:36 +08:00
|
|
|
|
|
|
|
"go.uber.org/zap"
|
|
|
|
|
2021-04-22 14:45:57 +08:00
|
|
|
"github.com/milvus-io/milvus/internal/log"
|
2021-01-19 11:37:16 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
type gcNode struct {
|
|
|
|
BaseNode
|
2021-02-04 20:31:23 +08:00
|
|
|
replica Replica
|
2021-01-19 11:37:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
func (gcNode *gcNode) Name() string {
|
|
|
|
return "gcNode"
|
|
|
|
}
|
|
|
|
|
2021-03-25 14:41:46 +08:00
|
|
|
func (gcNode *gcNode) Operate(in []flowgraph.Msg) []flowgraph.Msg {
|
2021-01-19 11:37:16 +08:00
|
|
|
|
|
|
|
if len(in) != 1 {
|
2021-02-26 10:13:36 +08:00
|
|
|
log.Error("Invalid operate message input in gcNode", zap.Int("input length", len(in)))
|
2021-01-19 11:37:16 +08:00
|
|
|
// TODO: add error handling
|
|
|
|
}
|
|
|
|
|
2021-02-25 17:35:36 +08:00
|
|
|
gcMsg, ok := in[0].(*gcMsg)
|
2021-01-19 11:37:16 +08:00
|
|
|
if !ok {
|
2021-02-26 10:13:36 +08:00
|
|
|
log.Error("type assertion failed for gcMsg")
|
2021-01-19 11:37:16 +08:00
|
|
|
// TODO: add error handling
|
|
|
|
}
|
|
|
|
|
2021-03-23 01:49:50 +08:00
|
|
|
if gcMsg == nil {
|
2021-03-25 14:41:46 +08:00
|
|
|
return []Msg{}
|
2021-03-23 01:49:50 +08:00
|
|
|
}
|
|
|
|
|
2021-01-19 11:37:16 +08:00
|
|
|
// drop collections
|
|
|
|
for _, collectionID := range gcMsg.gcRecord.collections {
|
|
|
|
err := gcNode.replica.removeCollection(collectionID)
|
|
|
|
if err != nil {
|
2021-02-26 10:13:36 +08:00
|
|
|
log.Error("replica remove collection wrong", zap.Error(err))
|
2021-01-19 11:37:16 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-25 14:41:46 +08:00
|
|
|
return nil
|
2021-01-19 11:37:16 +08:00
|
|
|
}
|
|
|
|
|
2021-02-04 20:31:23 +08:00
|
|
|
func newGCNode(replica Replica) *gcNode {
|
2021-01-19 11:37:16 +08:00
|
|
|
maxQueueLength := Params.FlowGraphMaxQueueLength
|
|
|
|
maxParallelism := Params.FlowGraphMaxParallelism
|
|
|
|
|
|
|
|
baseNode := BaseNode{}
|
|
|
|
baseNode.SetMaxQueueLength(maxQueueLength)
|
|
|
|
baseNode.SetMaxParallelism(maxParallelism)
|
|
|
|
|
|
|
|
return &gcNode{
|
|
|
|
BaseNode: baseNode,
|
|
|
|
replica: replica,
|
|
|
|
}
|
|
|
|
}
|