2021-01-16 02:12:14 +00:00
|
|
|
package querynode
|
2021-01-06 08:44:12 +00:00
|
|
|
|
|
|
|
import (
|
2021-02-25 09:35:36 +00:00
|
|
|
"context"
|
2021-03-05 01:21:35 +00:00
|
|
|
|
|
|
|
"go.uber.org/zap"
|
|
|
|
|
|
|
|
"github.com/zilliztech/milvus-distributed/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-02-25 09:35:36 +00:00
|
|
|
func (gcNode *gcNode) Operate(ctx context.Context, in []Msg) ([]Msg, context.Context) {
|
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-02-25 09:35:36 +00:00
|
|
|
return nil, ctx
|
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,
|
|
|
|
}
|
|
|
|
}
|