mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-12-02 20:09:57 +08:00
ddddd65d10
Signed-off-by: sunby <bingyi.sun@zilliz.com>
239 lines
5.6 KiB
Go
239 lines
5.6 KiB
Go
package indexnode
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"io"
|
|
"log"
|
|
"time"
|
|
|
|
"github.com/zilliztech/milvus-distributed/internal/proto/milvuspb"
|
|
|
|
"errors"
|
|
|
|
"github.com/opentracing/opentracing-go"
|
|
"github.com/uber/jaeger-client-go/config"
|
|
"github.com/zilliztech/milvus-distributed/internal/kv"
|
|
miniokv "github.com/zilliztech/milvus-distributed/internal/kv/minio"
|
|
"github.com/zilliztech/milvus-distributed/internal/proto/commonpb"
|
|
"github.com/zilliztech/milvus-distributed/internal/proto/indexpb"
|
|
"github.com/zilliztech/milvus-distributed/internal/proto/internalpb2"
|
|
"github.com/zilliztech/milvus-distributed/internal/util/funcutil"
|
|
"github.com/zilliztech/milvus-distributed/internal/util/typeutil"
|
|
)
|
|
|
|
const (
|
|
reqTimeoutInterval = time.Second * 10
|
|
)
|
|
|
|
type UniqueID = typeutil.UniqueID
|
|
type Timestamp = typeutil.Timestamp
|
|
|
|
type NodeImpl struct {
|
|
stateCode internalpb2.StateCode
|
|
|
|
loopCtx context.Context
|
|
loopCancel func()
|
|
|
|
sched *TaskScheduler
|
|
|
|
kv kv.Base
|
|
|
|
serviceClient typeutil.IndexServiceInterface // method factory
|
|
|
|
// Add callback functions at different stages
|
|
startCallbacks []func()
|
|
closeCallbacks []func()
|
|
|
|
closer io.Closer
|
|
}
|
|
|
|
func NewNodeImpl(ctx context.Context) (*NodeImpl, error) {
|
|
ctx1, cancel := context.WithCancel(ctx)
|
|
b := &NodeImpl{
|
|
loopCtx: ctx1,
|
|
loopCancel: cancel,
|
|
}
|
|
var err error
|
|
b.sched, err = NewTaskScheduler(b.loopCtx, b.kv)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return b, nil
|
|
}
|
|
|
|
func (i *NodeImpl) Init() error {
|
|
ctx := context.Background()
|
|
err := funcutil.WaitForComponentHealthy(ctx, i.serviceClient, "IndexService", 10, time.Second)
|
|
|
|
if err != nil {
|
|
return err
|
|
}
|
|
request := &indexpb.RegisterNodeRequest{
|
|
Base: nil,
|
|
Address: &commonpb.Address{
|
|
Ip: Params.IP,
|
|
Port: int64(Params.Port),
|
|
},
|
|
}
|
|
|
|
resp, err2 := i.serviceClient.RegisterNode(ctx, request)
|
|
if err2 != nil {
|
|
log.Printf("Index NodeImpl connect to IndexService failed, error= %v", err)
|
|
return err2
|
|
}
|
|
|
|
if resp.Status.ErrorCode != commonpb.ErrorCode_SUCCESS {
|
|
return errors.New(resp.Status.Reason)
|
|
}
|
|
|
|
err = Params.LoadConfigFromInitParams(resp.InitParams)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
// TODO
|
|
cfg := &config.Configuration{
|
|
ServiceName: fmt.Sprintf("index_node_%d", Params.NodeID),
|
|
Sampler: &config.SamplerConfig{
|
|
Type: "const",
|
|
Param: 1,
|
|
},
|
|
}
|
|
tracer, closer, err := cfg.NewTracer()
|
|
if err != nil {
|
|
panic(fmt.Sprintf("ERROR: cannot init Jaeger: %v\n", err))
|
|
}
|
|
opentracing.SetGlobalTracer(tracer)
|
|
i.closer = closer
|
|
|
|
option := &miniokv.Option{
|
|
Address: Params.MinIOAddress,
|
|
AccessKeyID: Params.MinIOAccessKeyID,
|
|
SecretAccessKeyID: Params.MinIOSecretAccessKey,
|
|
UseSSL: Params.MinIOUseSSL,
|
|
BucketName: Params.MinioBucketName,
|
|
CreateBucket: true,
|
|
}
|
|
i.kv, err = miniokv.NewMinIOKV(i.loopCtx, option)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
i.UpdateStateCode(internalpb2.StateCode_HEALTHY)
|
|
|
|
return nil
|
|
}
|
|
|
|
func (i *NodeImpl) Start() error {
|
|
i.sched.Start()
|
|
|
|
// Start callbacks
|
|
for _, cb := range i.startCallbacks {
|
|
cb()
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// Close closes the server.
|
|
func (i *NodeImpl) Stop() error {
|
|
if err := i.closer.Close(); err != nil {
|
|
return err
|
|
}
|
|
i.loopCancel()
|
|
if i.sched != nil {
|
|
i.sched.Close()
|
|
}
|
|
for _, cb := range i.closeCallbacks {
|
|
cb()
|
|
}
|
|
log.Print("NodeImpl closed.")
|
|
return nil
|
|
}
|
|
|
|
func (i *NodeImpl) UpdateStateCode(code internalpb2.StateCode) {
|
|
i.stateCode = code
|
|
}
|
|
|
|
func (i *NodeImpl) SetIndexServiceClient(serviceClient typeutil.IndexServiceInterface) {
|
|
i.serviceClient = serviceClient
|
|
}
|
|
|
|
func (i *NodeImpl) BuildIndex(ctx context.Context, request *indexpb.BuildIndexCmd) (*commonpb.Status, error) {
|
|
t := &IndexBuildTask{
|
|
BaseTask: BaseTask{
|
|
ctx: ctx,
|
|
done: make(chan error),
|
|
},
|
|
cmd: request,
|
|
kv: i.kv,
|
|
serviceClient: i.serviceClient,
|
|
nodeID: Params.NodeID,
|
|
}
|
|
|
|
ret := &commonpb.Status{
|
|
ErrorCode: commonpb.ErrorCode_SUCCESS,
|
|
}
|
|
|
|
err := i.sched.IndexBuildQueue.Enqueue(t)
|
|
if err != nil {
|
|
ret.ErrorCode = commonpb.ErrorCode_UNEXPECTED_ERROR
|
|
ret.Reason = err.Error()
|
|
return ret, nil
|
|
}
|
|
log.Println("indexnode successfully schedule with indexBuildID = ", request.IndexBuildID)
|
|
return ret, nil
|
|
}
|
|
|
|
func (i *NodeImpl) DropIndex(ctx context.Context, request *indexpb.DropIndexRequest) (*commonpb.Status, error) {
|
|
i.sched.IndexBuildQueue.tryToRemoveUselessIndexBuildTask(request.IndexID)
|
|
return &commonpb.Status{
|
|
ErrorCode: commonpb.ErrorCode_SUCCESS,
|
|
Reason: "",
|
|
}, nil
|
|
}
|
|
|
|
// AddStartCallback adds a callback in the startServer phase.
|
|
func (i *NodeImpl) AddStartCallback(callbacks ...func()) {
|
|
i.startCallbacks = append(i.startCallbacks, callbacks...)
|
|
}
|
|
|
|
// AddCloseCallback adds a callback in the Close phase.
|
|
func (i *NodeImpl) AddCloseCallback(callbacks ...func()) {
|
|
i.closeCallbacks = append(i.closeCallbacks, callbacks...)
|
|
}
|
|
|
|
func (i *NodeImpl) GetComponentStates(ctx context.Context) (*internalpb2.ComponentStates, error) {
|
|
|
|
stateInfo := &internalpb2.ComponentInfo{
|
|
NodeID: Params.NodeID,
|
|
Role: "NodeImpl",
|
|
StateCode: i.stateCode,
|
|
}
|
|
|
|
ret := &internalpb2.ComponentStates{
|
|
State: stateInfo,
|
|
SubcomponentStates: nil, // todo add subcomponents states
|
|
Status: &commonpb.Status{
|
|
ErrorCode: commonpb.ErrorCode_SUCCESS,
|
|
},
|
|
}
|
|
return ret, nil
|
|
}
|
|
|
|
func (i *NodeImpl) GetTimeTickChannel(ctx context.Context) (*milvuspb.StringResponse, error) {
|
|
return &milvuspb.StringResponse{
|
|
Status: &commonpb.Status{
|
|
ErrorCode: commonpb.ErrorCode_SUCCESS,
|
|
},
|
|
}, nil
|
|
}
|
|
|
|
func (i *NodeImpl) GetStatisticsChannel(ctx context.Context) (*milvuspb.StringResponse, error) {
|
|
return &milvuspb.StringResponse{
|
|
Status: &commonpb.Status{
|
|
ErrorCode: commonpb.ErrorCode_SUCCESS,
|
|
},
|
|
}, nil
|
|
}
|