mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-12-05 05:18:52 +08:00
7a3223dc81
Signed-off-by: ThreadDao <yufen.zong@zilliz.com>
182 lines
4.3 KiB
Go
182 lines
4.3 KiB
Go
package grpcindexnode
|
|
|
|
import (
|
|
"context"
|
|
"log"
|
|
"net"
|
|
"strconv"
|
|
"sync"
|
|
|
|
otgrpc "github.com/opentracing-contrib/go-grpc"
|
|
"github.com/opentracing/opentracing-go"
|
|
grpcindexserviceclient "github.com/zilliztech/milvus-distributed/internal/distributed/indexservice/client"
|
|
"github.com/zilliztech/milvus-distributed/internal/indexnode"
|
|
"github.com/zilliztech/milvus-distributed/internal/types"
|
|
"github.com/zilliztech/milvus-distributed/internal/util/funcutil"
|
|
"google.golang.org/grpc"
|
|
|
|
"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/proto/milvuspb"
|
|
)
|
|
|
|
type Server struct {
|
|
indexnode *indexnode.IndexNode
|
|
|
|
grpcServer *grpc.Server
|
|
grpcErrChan chan error
|
|
|
|
indexServiceClient types.IndexService
|
|
loopCtx context.Context
|
|
loopCancel func()
|
|
loopWg sync.WaitGroup
|
|
}
|
|
|
|
func (s *Server) Run() error {
|
|
|
|
if err := s.init(); err != nil {
|
|
return nil
|
|
}
|
|
|
|
if err := s.start(); err != nil {
|
|
return err
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (s *Server) startGrpcLoop(grpcPort int) {
|
|
|
|
defer s.loopWg.Done()
|
|
|
|
log.Println("network port: ", grpcPort)
|
|
lis, err := net.Listen("tcp", ":"+strconv.Itoa(grpcPort))
|
|
if err != nil {
|
|
log.Printf("GrpcServer:failed to listen: %v", err)
|
|
s.grpcErrChan <- err
|
|
return
|
|
}
|
|
|
|
ctx, cancel := context.WithCancel(s.loopCtx)
|
|
defer cancel()
|
|
|
|
tracer := opentracing.GlobalTracer()
|
|
s.grpcServer = grpc.NewServer(grpc.UnaryInterceptor(
|
|
otgrpc.OpenTracingServerInterceptor(tracer)),
|
|
grpc.StreamInterceptor(
|
|
otgrpc.OpenTracingStreamServerInterceptor(tracer)))
|
|
indexpb.RegisterIndexNodeServer(s.grpcServer, s)
|
|
go funcutil.CheckGrpcReady(ctx, s.grpcErrChan)
|
|
if err := s.grpcServer.Serve(lis); err != nil {
|
|
s.grpcErrChan <- err
|
|
}
|
|
|
|
}
|
|
|
|
func (s *Server) init() error {
|
|
var err error
|
|
Params.Init()
|
|
if !funcutil.CheckPortAvailable(Params.Port) {
|
|
Params.Port = funcutil.GetAvailablePort()
|
|
}
|
|
Params.LoadFromEnv()
|
|
Params.LoadFromArgs()
|
|
|
|
Params.Address = Params.IP + ":" + strconv.FormatInt(int64(Params.Port), 10)
|
|
|
|
defer func() {
|
|
if err != nil {
|
|
err = s.Stop()
|
|
if err != nil {
|
|
log.Println("Init failed, and Stop failed")
|
|
}
|
|
}
|
|
}()
|
|
|
|
s.loopWg.Add(1)
|
|
go s.startGrpcLoop(Params.Port)
|
|
// wait for grpc server loop start
|
|
err = <-s.grpcErrChan
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
indexServiceAddr := Params.IndexServerAddress
|
|
s.indexServiceClient = grpcindexserviceclient.NewClient(indexServiceAddr)
|
|
err = s.indexServiceClient.Init()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
s.indexnode.SetIndexServiceClient(s.indexServiceClient)
|
|
|
|
indexnode.Params.Init()
|
|
indexnode.Params.Port = Params.Port
|
|
indexnode.Params.IP = Params.IP
|
|
indexnode.Params.Address = Params.Address
|
|
|
|
s.indexnode.UpdateStateCode(internalpb2.StateCode_INITIALIZING)
|
|
|
|
err = s.indexnode.Init()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (s *Server) start() error {
|
|
err := s.indexnode.Start()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (s *Server) Stop() error {
|
|
s.loopCancel()
|
|
if s.indexnode != nil {
|
|
s.indexnode.Stop()
|
|
}
|
|
if s.grpcServer != nil {
|
|
s.grpcServer.GracefulStop()
|
|
}
|
|
s.loopWg.Wait()
|
|
|
|
return nil
|
|
}
|
|
|
|
func (s *Server) BuildIndex(ctx context.Context, req *indexpb.BuildIndexCmd) (*commonpb.Status, error) {
|
|
return s.indexnode.BuildIndex(ctx, req)
|
|
}
|
|
|
|
func (s *Server) DropIndex(ctx context.Context, request *indexpb.DropIndexRequest) (*commonpb.Status, error) {
|
|
return s.indexnode.DropIndex(ctx, request)
|
|
}
|
|
|
|
func (s *Server) GetComponentStates(ctx context.Context, empty *commonpb.Empty) (*internalpb2.ComponentStates, error) {
|
|
return s.indexnode.GetComponentStates(ctx)
|
|
}
|
|
|
|
func (s *Server) GetTimeTickChannel(ctx context.Context, empty *commonpb.Empty) (*milvuspb.StringResponse, error) {
|
|
return s.indexnode.GetTimeTickChannel(ctx)
|
|
}
|
|
|
|
func (s *Server) GetStatisticsChannel(ctx context.Context, empty *commonpb.Empty) (*milvuspb.StringResponse, error) {
|
|
return s.indexnode.GetStatisticsChannel(ctx)
|
|
}
|
|
|
|
func NewServer(ctx context.Context) (*Server, error) {
|
|
ctx1, cancel := context.WithCancel(ctx)
|
|
node, err := indexnode.NewIndexNode(ctx1)
|
|
if err != nil {
|
|
defer cancel()
|
|
return nil, err
|
|
}
|
|
|
|
return &Server{
|
|
loopCtx: ctx1,
|
|
loopCancel: cancel,
|
|
indexnode: node,
|
|
grpcErrChan: make(chan error),
|
|
}, nil
|
|
}
|