mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-12-04 12:59:23 +08:00
03e3b4beb4
* Add log to startup process Signed-off-by: zhenshan.cao <zhenshan.cao@zilliz.com> * Fixbug: avoid ctx exceed deadline Signed-off-by: zhenshan.cao <zhenshan.cao@zilliz.com> * Fmt code Signed-off-by: zhenshan.cao <zhenshan.cao@zilliz.com> * Fix bug: wrong time unit Signed-off-by: zhenshan.cao <zhenshan.cao@zilliz.com> * Fixbug: datanservice client reconnect use time ctx Signed-off-by: zhenshan.cao <zhenshan.cao@zilliz.com>
200 lines
5.3 KiB
Go
200 lines
5.3 KiB
Go
// Copyright (C) 2019-2020 Zilliz. All rights reserved.
|
|
//
|
|
// Licensed 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 grpcindexservice
|
|
|
|
import (
|
|
"context"
|
|
"io"
|
|
"math"
|
|
"net"
|
|
"strconv"
|
|
"sync"
|
|
|
|
"go.uber.org/zap"
|
|
|
|
"github.com/milvus-io/milvus/internal/indexservice"
|
|
"github.com/milvus-io/milvus/internal/log"
|
|
"github.com/milvus-io/milvus/internal/proto/commonpb"
|
|
"github.com/milvus-io/milvus/internal/proto/indexpb"
|
|
"github.com/milvus-io/milvus/internal/proto/internalpb"
|
|
"github.com/milvus-io/milvus/internal/proto/milvuspb"
|
|
"github.com/milvus-io/milvus/internal/util/funcutil"
|
|
"github.com/milvus-io/milvus/internal/util/trace"
|
|
"github.com/milvus-io/milvus/internal/util/typeutil"
|
|
otgrpc "github.com/opentracing-contrib/go-grpc"
|
|
"github.com/opentracing/opentracing-go"
|
|
"google.golang.org/grpc"
|
|
)
|
|
|
|
type UniqueID = typeutil.UniqueID
|
|
type Timestamp = typeutil.Timestamp
|
|
|
|
type Server struct {
|
|
indexservice *indexservice.IndexService
|
|
|
|
grpcServer *grpc.Server
|
|
grpcErrChan chan error
|
|
|
|
loopCtx context.Context
|
|
loopCancel func()
|
|
loopWg sync.WaitGroup
|
|
|
|
closer io.Closer
|
|
}
|
|
|
|
func (s *Server) Run() error {
|
|
|
|
if err := s.init(); err != nil {
|
|
return err
|
|
}
|
|
|
|
if err := s.start(); err != nil {
|
|
return err
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (s *Server) init() error {
|
|
Params.Init()
|
|
indexservice.Params.Init()
|
|
indexservice.Params.Address = Params.ServiceAddress
|
|
indexservice.Params.Port = Params.ServicePort
|
|
|
|
closer := trace.InitTracing("index_service")
|
|
s.closer = closer
|
|
|
|
if err := s.indexservice.Register(); err != nil {
|
|
return err
|
|
}
|
|
|
|
s.loopWg.Add(1)
|
|
go s.startGrpcLoop(Params.ServicePort)
|
|
// wait for grpc IndexService loop start
|
|
if err := <-s.grpcErrChan; err != nil {
|
|
return err
|
|
}
|
|
s.indexservice.UpdateStateCode(internalpb.StateCode_Initializing)
|
|
|
|
if err := s.indexservice.Init(); err != nil {
|
|
return err
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (s *Server) start() error {
|
|
if err := s.indexservice.Start(); err != nil {
|
|
return err
|
|
}
|
|
log.Debug("indexService started")
|
|
return nil
|
|
}
|
|
|
|
func (s *Server) Stop() error {
|
|
if s.closer != nil {
|
|
if err := s.closer.Close(); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
if s.indexservice != nil {
|
|
s.indexservice.Stop()
|
|
}
|
|
|
|
s.loopCancel()
|
|
if s.grpcServer != nil {
|
|
s.grpcServer.GracefulStop()
|
|
}
|
|
|
|
s.loopWg.Wait()
|
|
return nil
|
|
}
|
|
|
|
func (s *Server) GetComponentStates(ctx context.Context, req *internalpb.GetComponentStatesRequest) (*internalpb.ComponentStates, error) {
|
|
return s.indexservice.GetComponentStates(ctx)
|
|
}
|
|
|
|
func (s *Server) GetTimeTickChannel(ctx context.Context, req *internalpb.GetTimeTickChannelRequest) (*milvuspb.StringResponse, error) {
|
|
return s.indexservice.GetTimeTickChannel(ctx)
|
|
}
|
|
|
|
func (s *Server) GetStatisticsChannel(ctx context.Context, req *internalpb.GetStatisticsChannelRequest) (*milvuspb.StringResponse, error) {
|
|
return s.indexservice.GetStatisticsChannel(ctx)
|
|
}
|
|
|
|
func (s *Server) RegisterNode(ctx context.Context, req *indexpb.RegisterNodeRequest) (*indexpb.RegisterNodeResponse, error) {
|
|
return s.indexservice.RegisterNode(ctx, req)
|
|
}
|
|
|
|
func (s *Server) BuildIndex(ctx context.Context, req *indexpb.BuildIndexRequest) (*indexpb.BuildIndexResponse, error) {
|
|
return s.indexservice.BuildIndex(ctx, req)
|
|
}
|
|
|
|
func (s *Server) GetIndexStates(ctx context.Context, req *indexpb.GetIndexStatesRequest) (*indexpb.GetIndexStatesResponse, error) {
|
|
return s.indexservice.GetIndexStates(ctx, req)
|
|
}
|
|
|
|
func (s *Server) DropIndex(ctx context.Context, request *indexpb.DropIndexRequest) (*commonpb.Status, error) {
|
|
return s.indexservice.DropIndex(ctx, request)
|
|
}
|
|
|
|
func (s *Server) GetIndexFilePaths(ctx context.Context, req *indexpb.GetIndexFilePathsRequest) (*indexpb.GetIndexFilePathsResponse, error) {
|
|
return s.indexservice.GetIndexFilePaths(ctx, req)
|
|
}
|
|
|
|
func (s *Server) startGrpcLoop(grpcPort int) {
|
|
|
|
defer s.loopWg.Done()
|
|
|
|
log.Debug("IndexService", zap.Int("network port", grpcPort))
|
|
lis, err := net.Listen("tcp", ":"+strconv.Itoa(grpcPort))
|
|
if err != nil {
|
|
log.Warn("IndexService", zap.String("GrpcServer:failed to listen", err.Error()))
|
|
s.grpcErrChan <- err
|
|
return
|
|
}
|
|
|
|
ctx, cancel := context.WithCancel(s.loopCtx)
|
|
defer cancel()
|
|
|
|
tracer := opentracing.GlobalTracer()
|
|
s.grpcServer = grpc.NewServer(
|
|
grpc.MaxRecvMsgSize(math.MaxInt32),
|
|
grpc.MaxSendMsgSize(math.MaxInt32),
|
|
grpc.UnaryInterceptor(
|
|
otgrpc.OpenTracingServerInterceptor(tracer)),
|
|
grpc.StreamInterceptor(
|
|
otgrpc.OpenTracingStreamServerInterceptor(tracer)))
|
|
indexpb.RegisterIndexServiceServer(s.grpcServer, s)
|
|
|
|
go funcutil.CheckGrpcReady(ctx, s.grpcErrChan)
|
|
if err := s.grpcServer.Serve(lis); err != nil {
|
|
s.grpcErrChan <- err
|
|
}
|
|
}
|
|
|
|
func NewServer(ctx context.Context) (*Server, error) {
|
|
|
|
ctx1, cancel := context.WithCancel(ctx)
|
|
serverImp, err := indexservice.NewIndexService(ctx)
|
|
if err != nil {
|
|
defer cancel()
|
|
return nil, err
|
|
}
|
|
s := &Server{
|
|
loopCtx: ctx1,
|
|
loopCancel: cancel,
|
|
indexservice: serverImp,
|
|
grpcErrChan: make(chan error),
|
|
}
|
|
|
|
return s, nil
|
|
}
|