mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-12-05 13:28:49 +08:00
08b94ea81d
Signed-off-by: lixinguo <xinguo.li@zilliz.com> Co-authored-by: lixinguo <xinguo.li@zilliz.com>
149 lines
4.4 KiB
Go
149 lines
4.4 KiB
Go
package broker
|
|
|
|
import (
|
|
"context"
|
|
"time"
|
|
|
|
"github.com/samber/lo"
|
|
"go.uber.org/zap"
|
|
|
|
"github.com/milvus-io/milvus-proto/go-api/v2/commonpb"
|
|
"github.com/milvus-io/milvus-proto/go-api/v2/msgpb"
|
|
"github.com/milvus-io/milvus/internal/metastore/kv/binlog"
|
|
"github.com/milvus-io/milvus/internal/proto/datapb"
|
|
"github.com/milvus-io/milvus/internal/types"
|
|
"github.com/milvus-io/milvus/pkg/log"
|
|
"github.com/milvus-io/milvus/pkg/util/commonpbutil"
|
|
"github.com/milvus-io/milvus/pkg/util/merr"
|
|
"github.com/milvus-io/milvus/pkg/util/tsoutil"
|
|
"github.com/milvus-io/milvus/pkg/util/typeutil"
|
|
)
|
|
|
|
type dataCoordBroker struct {
|
|
client types.DataCoordClient
|
|
serverID int64
|
|
}
|
|
|
|
func (dc *dataCoordBroker) AssignSegmentID(ctx context.Context, reqs ...*datapb.SegmentIDRequest) ([]typeutil.UniqueID, error) {
|
|
req := &datapb.AssignSegmentIDRequest{
|
|
NodeID: dc.serverID,
|
|
PeerRole: typeutil.ProxyRole,
|
|
SegmentIDRequests: reqs,
|
|
}
|
|
|
|
resp, err := dc.client.AssignSegmentID(ctx, req)
|
|
|
|
if err := merr.CheckRPCCall(resp, err); err != nil {
|
|
log.Warn("failed to call datacoord AssignSegmentID", zap.Error(err))
|
|
return nil, err
|
|
}
|
|
|
|
return lo.Map(resp.GetSegIDAssignments(), func(result *datapb.SegmentIDAssignment, _ int) typeutil.UniqueID {
|
|
return result.GetSegID()
|
|
}), nil
|
|
}
|
|
|
|
func (dc *dataCoordBroker) ReportTimeTick(ctx context.Context, msgs []*msgpb.DataNodeTtMsg) error {
|
|
log := log.Ctx(ctx)
|
|
|
|
req := &datapb.ReportDataNodeTtMsgsRequest{
|
|
Base: commonpbutil.NewMsgBase(
|
|
commonpbutil.WithMsgType(commonpb.MsgType_DataNodeTt),
|
|
commonpbutil.WithSourceID(dc.serverID),
|
|
),
|
|
Msgs: msgs,
|
|
}
|
|
|
|
resp, err := dc.client.ReportDataNodeTtMsgs(ctx, req)
|
|
if err := merr.CheckRPCCall(resp, err); err != nil {
|
|
log.Warn("failed to report datanodeTtMsgs", zap.Error(err))
|
|
return err
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (dc *dataCoordBroker) GetSegmentInfo(ctx context.Context, segmentIDs []int64) ([]*datapb.SegmentInfo, error) {
|
|
log := log.Ctx(ctx).With(
|
|
zap.Int64s("segmentIDs", segmentIDs),
|
|
)
|
|
|
|
infoResp, err := dc.client.GetSegmentInfo(ctx, &datapb.GetSegmentInfoRequest{
|
|
Base: commonpbutil.NewMsgBase(
|
|
commonpbutil.WithMsgType(commonpb.MsgType_SegmentInfo),
|
|
commonpbutil.WithSourceID(dc.serverID),
|
|
),
|
|
SegmentIDs: segmentIDs,
|
|
IncludeUnHealthy: true,
|
|
})
|
|
if err := merr.CheckRPCCall(infoResp, err); err != nil {
|
|
log.Warn("Fail to get SegmentInfo by ids from datacoord", zap.Error(err))
|
|
return nil, err
|
|
}
|
|
err = binlog.DecompressMultiBinLogs(infoResp.GetInfos())
|
|
if err != nil {
|
|
log.Warn("Fail to DecompressMultiBinLogs", zap.Error(err))
|
|
return nil, err
|
|
}
|
|
|
|
return infoResp.Infos, nil
|
|
}
|
|
|
|
func (dc *dataCoordBroker) UpdateChannelCheckpoint(ctx context.Context, channelCPs []*msgpb.MsgPosition) error {
|
|
req := &datapb.UpdateChannelCheckpointRequest{
|
|
Base: commonpbutil.NewMsgBase(
|
|
commonpbutil.WithSourceID(dc.serverID),
|
|
),
|
|
ChannelCheckpoints: channelCPs,
|
|
}
|
|
|
|
resp, err := dc.client.UpdateChannelCheckpoint(ctx, req)
|
|
if err = merr.CheckRPCCall(resp, err); err != nil {
|
|
channels := lo.Map(channelCPs, func(pos *msgpb.MsgPosition, _ int) string {
|
|
return pos.GetChannelName()
|
|
})
|
|
channelTimes := lo.Map(channelCPs, func(pos *msgpb.MsgPosition, _ int) time.Time {
|
|
return tsoutil.PhysicalTime(pos.GetTimestamp())
|
|
})
|
|
log.Warn("failed to update channel checkpoint", zap.Strings("channelNames", channels),
|
|
zap.Times("channelCheckpointTimes", channelTimes), zap.Error(err))
|
|
return err
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (dc *dataCoordBroker) SaveBinlogPaths(ctx context.Context, req *datapb.SaveBinlogPathsRequest) error {
|
|
log := log.Ctx(ctx)
|
|
|
|
resp, err := dc.client.SaveBinlogPaths(ctx, req)
|
|
if err := merr.CheckRPCCall(resp, err); err != nil {
|
|
log.Warn("failed to SaveBinlogPaths", zap.Error(err))
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func (dc *dataCoordBroker) DropVirtualChannel(ctx context.Context, req *datapb.DropVirtualChannelRequest) (*datapb.DropVirtualChannelResponse, error) {
|
|
log := log.Ctx(ctx)
|
|
|
|
resp, err := dc.client.DropVirtualChannel(ctx, req)
|
|
if err := merr.CheckRPCCall(resp, err); err != nil {
|
|
log.Warn("failed to DropVirtualChannel", zap.Error(err))
|
|
return resp, err
|
|
}
|
|
|
|
return resp, nil
|
|
}
|
|
|
|
func (dc *dataCoordBroker) UpdateSegmentStatistics(ctx context.Context, req *datapb.UpdateSegmentStatisticsRequest) error {
|
|
log := log.Ctx(ctx)
|
|
|
|
resp, err := dc.client.UpdateSegmentStatistics(ctx, req)
|
|
if err := merr.CheckRPCCall(resp, err); err != nil {
|
|
log.Warn("failed to UpdateSegmentStatistics", zap.Error(err))
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|