mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-12-01 11:29:48 +08:00
2e6ddd7f2a
Signed-off-by: Congqi Xia <congqi.xia@zilliz.com> Signed-off-by: Congqi Xia <congqi.xia@zilliz.com>
136 lines
4.2 KiB
Go
136 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 datacoord
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
|
|
"github.com/milvus-io/milvus-proto/go-api/commonpb"
|
|
"github.com/milvus-io/milvus/internal/log"
|
|
"github.com/milvus-io/milvus/internal/metrics"
|
|
"github.com/milvus-io/milvus/internal/proto/datapb"
|
|
"github.com/milvus-io/milvus/internal/util/commonpbutil"
|
|
"github.com/samber/lo"
|
|
"go.uber.org/zap"
|
|
)
|
|
|
|
// Cluster provides interfaces to interact with datanode cluster
|
|
type Cluster struct {
|
|
sessionManager *SessionManager
|
|
channelManager *ChannelManager
|
|
}
|
|
|
|
// NewCluster creates a new cluster
|
|
func NewCluster(sessionManager *SessionManager, channelManager *ChannelManager) *Cluster {
|
|
c := &Cluster{
|
|
sessionManager: sessionManager,
|
|
channelManager: channelManager,
|
|
}
|
|
|
|
return c
|
|
}
|
|
|
|
// Startup inits the cluster with the given data nodes.
|
|
func (c *Cluster) Startup(ctx context.Context, nodes []*NodeInfo) error {
|
|
for _, node := range nodes {
|
|
c.sessionManager.AddSession(node)
|
|
}
|
|
currs := make([]int64, 0, len(nodes))
|
|
for _, node := range nodes {
|
|
currs = append(currs, node.NodeID)
|
|
}
|
|
return c.channelManager.Startup(ctx, currs)
|
|
}
|
|
|
|
// Register registers a new node in cluster
|
|
func (c *Cluster) Register(node *NodeInfo) error {
|
|
c.sessionManager.AddSession(node)
|
|
err := c.channelManager.AddNode(node.NodeID)
|
|
if err == nil {
|
|
metrics.DataCoordNumDataNodes.WithLabelValues().Inc()
|
|
}
|
|
return err
|
|
}
|
|
|
|
// UnRegister removes a node from cluster
|
|
func (c *Cluster) UnRegister(node *NodeInfo) error {
|
|
c.sessionManager.DeleteSession(node)
|
|
err := c.channelManager.DeleteNode(node.NodeID)
|
|
if err == nil {
|
|
metrics.DataCoordNumDataNodes.WithLabelValues().Dec()
|
|
}
|
|
return err
|
|
}
|
|
|
|
// Watch tries to add a channel in datanode cluster
|
|
func (c *Cluster) Watch(ch string, collectionID UniqueID) error {
|
|
return c.channelManager.Watch(&channel{Name: ch, CollectionID: collectionID})
|
|
}
|
|
|
|
// Flush sends flush requests to dataNodes specified
|
|
// which also according to channels where segments are assigned to.
|
|
func (c *Cluster) Flush(ctx context.Context, nodeID int64, channel string,
|
|
segments []*datapb.SegmentInfo, markSegments []*datapb.SegmentInfo) error {
|
|
if !c.channelManager.Match(nodeID, channel) {
|
|
log.Warn("node is not matched with channel",
|
|
zap.String("channel", channel),
|
|
zap.Int64("nodeID", nodeID),
|
|
)
|
|
return fmt.Errorf("channel %s is not watched on node %d", channel, nodeID)
|
|
}
|
|
|
|
ch := c.channelManager.getChannelByNodeAndName(nodeID, channel)
|
|
|
|
getSegmentID := func(segment *datapb.SegmentInfo, _ int) int64 {
|
|
return segment.GetID()
|
|
}
|
|
|
|
req := &datapb.FlushSegmentsRequest{
|
|
Base: commonpbutil.NewMsgBase(
|
|
commonpbutil.WithMsgType(commonpb.MsgType_Flush),
|
|
commonpbutil.WithSourceID(Params.DataCoordCfg.GetNodeID()),
|
|
),
|
|
CollectionID: ch.CollectionID,
|
|
SegmentIDs: lo.Map(segments, getSegmentID),
|
|
MarkSegmentIDs: lo.Map(markSegments, getSegmentID),
|
|
}
|
|
|
|
c.sessionManager.Flush(ctx, nodeID, req)
|
|
return nil
|
|
}
|
|
|
|
// Import sends import requests to DataNodes whose ID==nodeID.
|
|
func (c *Cluster) Import(ctx context.Context, nodeID int64, it *datapb.ImportTaskRequest) {
|
|
c.sessionManager.Import(ctx, nodeID, it)
|
|
}
|
|
|
|
// ReCollectSegmentStats triggers a ReCollectSegmentStats call from session manager.
|
|
func (c *Cluster) ReCollectSegmentStats(ctx context.Context, nodeID int64) {
|
|
c.sessionManager.ReCollectSegmentStats(ctx, nodeID)
|
|
}
|
|
|
|
// GetSessions returns all sessions
|
|
func (c *Cluster) GetSessions() []*Session {
|
|
return c.sessionManager.GetSessions()
|
|
}
|
|
|
|
// Close releases resources opened in Cluster
|
|
func (c *Cluster) Close() {
|
|
c.sessionManager.Close()
|
|
}
|