mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-12-02 20:09:57 +08:00
c2ca2c276f
Signed-off-by: godchen <qingxiang.chen@zilliz.com>
229 lines
5.4 KiB
Go
229 lines
5.4 KiB
Go
package indexnode
|
|
|
|
import (
|
|
"context"
|
|
"log"
|
|
"time"
|
|
|
|
"github.com/zilliztech/milvus-distributed/internal/proto/milvuspb"
|
|
|
|
"github.com/zilliztech/milvus-distributed/internal/errors"
|
|
"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/retry"
|
|
"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()
|
|
}
|
|
|
|
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 {
|
|
log.Println("AAAAAAAAAAAAAAAAA", i.serviceClient)
|
|
err := funcutil.WaitForComponentReady(i.serviceClient, "IndexService", 10, time.Second)
|
|
log.Println("BBBBBBBBB", i.serviceClient)
|
|
|
|
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(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
|
|
}
|
|
|
|
connectMinIOFn := func() error {
|
|
option := &miniokv.Option{
|
|
Address: Params.MinIOAddress,
|
|
AccessKeyID: Params.MinIOAccessKeyID,
|
|
SecretAccessKeyID: Params.MinIOSecretAccessKey,
|
|
UseSSL: Params.MinIOUseSSL,
|
|
BucketName: Params.MinioBucketName,
|
|
CreateBucket: true,
|
|
}
|
|
var err error
|
|
i.kv, err = miniokv.NewMinIOKV(i.loopCtx, option)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
return nil
|
|
}
|
|
|
|
err = retry.Retry(10, time.Millisecond*200, connectMinIOFn)
|
|
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 {
|
|
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(request *indexpb.BuildIndexCmd) (*commonpb.Status, error) {
|
|
t := newIndexBuildTask()
|
|
t.cmd = request
|
|
t.kv = i.kv
|
|
t.serviceClient = i.serviceClient
|
|
t.nodeID = Params.NodeID
|
|
ctx, cancel := context.WithTimeout(context.Background(), reqTimeoutInterval)
|
|
defer cancel()
|
|
|
|
fn := func() error {
|
|
select {
|
|
case <-ctx.Done():
|
|
return errors.New("Enqueue BuildQueue timeout")
|
|
default:
|
|
return i.sched.IndexBuildQueue.Enqueue(t)
|
|
}
|
|
}
|
|
ret := &commonpb.Status{
|
|
ErrorCode: commonpb.ErrorCode_SUCCESS,
|
|
}
|
|
|
|
err := fn()
|
|
if err != nil {
|
|
ret.ErrorCode = commonpb.ErrorCode_UNEXPECTED_ERROR
|
|
ret.Reason = err.Error()
|
|
return ret, nil
|
|
}
|
|
log.Println("index scheduler successfully with indexBuildID = ", request.IndexBuildID)
|
|
err = t.WaitToFinish()
|
|
log.Println("build index finish ...err = ", err)
|
|
if err != nil {
|
|
ret.ErrorCode = commonpb.ErrorCode_UNEXPECTED_ERROR
|
|
ret.Reason = err.Error()
|
|
return ret, nil
|
|
}
|
|
return ret, 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() (*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() (*milvuspb.StringResponse, error) {
|
|
return &milvuspb.StringResponse{
|
|
Status: &commonpb.Status{
|
|
ErrorCode: commonpb.ErrorCode_SUCCESS,
|
|
},
|
|
}, nil
|
|
}
|
|
|
|
func (i *NodeImpl) GetStatisticsChannel() (*milvuspb.StringResponse, error) {
|
|
return &milvuspb.StringResponse{
|
|
Status: &commonpb.Status{
|
|
ErrorCode: commonpb.ErrorCode_SUCCESS,
|
|
},
|
|
}, nil
|
|
}
|