2021-04-19 05:47:10 +00: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-16 02:12:14 +00:00
|
|
|
package querynode
|
2021-01-06 08:44:12 +00:00
|
|
|
|
|
|
|
import (
|
2021-04-22 06:45:57 +00:00
|
|
|
"github.com/milvus-io/milvus/internal/util/flowgraph"
|
2021-03-05 01:21:35 +00:00
|
|
|
|
|
|
|
"go.uber.org/zap"
|
|
|
|
|
2021-04-22 06:45:57 +00:00
|
|
|
"github.com/milvus-io/milvus/internal/log"
|
2021-01-06 08:44:12 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
type gcNode struct {
|
2021-01-15 07:28:54 +00:00
|
|
|
baseNode
|
2021-03-05 08:52:45 +00:00
|
|
|
replica ReplicaInterface
|
2021-01-06 08:44:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (gcNode *gcNode) Name() string {
|
|
|
|
return "gcNode"
|
|
|
|
}
|
|
|
|
|
2021-03-25 06:41:46 +00:00
|
|
|
func (gcNode *gcNode) Operate(in []flowgraph.Msg) []flowgraph.Msg {
|
2021-03-05 01:21:35 +00:00
|
|
|
//log.Debug("Do gcNode operation")
|
2021-01-06 08:44:12 +00:00
|
|
|
|
|
|
|
if len(in) != 1 {
|
2021-03-05 01:21:35 +00:00
|
|
|
log.Error("Invalid operate message input in gcNode", zap.Int("input length", len(in)))
|
2021-01-06 08:44:12 +00:00
|
|
|
// TODO: add error handling
|
|
|
|
}
|
|
|
|
|
2021-02-25 09:35:36 +00:00
|
|
|
_, ok := in[0].(*gcMsg)
|
2021-01-06 08:44:12 +00:00
|
|
|
if !ok {
|
2021-03-05 01:21:35 +00:00
|
|
|
log.Error("type assertion failed for gcMsg")
|
2021-01-06 08:44:12 +00:00
|
|
|
// TODO: add error handling
|
|
|
|
}
|
|
|
|
|
2021-02-04 03:08:36 +00:00
|
|
|
// Use `releasePartition` and `releaseCollection`,
|
|
|
|
// because if we drop collections or partitions here, query service doesn't know this behavior,
|
|
|
|
// which would lead the wrong result of `showCollections` or `showPartition`
|
2021-01-06 08:44:12 +00:00
|
|
|
|
2021-02-04 03:08:36 +00:00
|
|
|
//// drop collections
|
|
|
|
//for _, collectionID := range gcMsg.gcRecord.collections {
|
|
|
|
// err := gcNode.replica.removeCollection(collectionID)
|
|
|
|
// if err != nil {
|
|
|
|
// log.Println(err)
|
|
|
|
// }
|
|
|
|
//}
|
|
|
|
//
|
|
|
|
//// drop partitions
|
|
|
|
//for _, partition := range gcMsg.gcRecord.partitions {
|
2021-02-05 02:53:11 +00:00
|
|
|
// err := gcNode.replica.removePartition(partition.partitionID)
|
2021-02-04 03:08:36 +00:00
|
|
|
// if err != nil {
|
|
|
|
// log.Println(err)
|
|
|
|
// }
|
|
|
|
//}
|
2021-01-06 08:44:12 +00:00
|
|
|
|
2021-03-25 06:41:46 +00:00
|
|
|
return nil
|
2021-01-06 08:44:12 +00:00
|
|
|
}
|
|
|
|
|
2021-03-05 08:52:45 +00:00
|
|
|
func newGCNode(replica ReplicaInterface) *gcNode {
|
2021-01-06 08:44:12 +00:00
|
|
|
maxQueueLength := Params.FlowGraphMaxQueueLength
|
|
|
|
maxParallelism := Params.FlowGraphMaxParallelism
|
|
|
|
|
2021-01-15 07:28:54 +00:00
|
|
|
baseNode := baseNode{}
|
2021-01-06 08:44:12 +00:00
|
|
|
baseNode.SetMaxQueueLength(maxQueueLength)
|
|
|
|
baseNode.SetMaxParallelism(maxParallelism)
|
|
|
|
|
|
|
|
return &gcNode{
|
2021-01-15 07:28:54 +00:00
|
|
|
baseNode: baseNode,
|
2021-01-06 08:44:12 +00:00
|
|
|
replica: replica,
|
|
|
|
}
|
|
|
|
}
|