2021-04-19 11:28:11 +00:00
|
|
|
// 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.
|
|
|
|
|
2021-01-29 10:34:12 +00:00
|
|
|
package components
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
2021-02-24 01:48:17 +00:00
|
|
|
"io"
|
2021-01-29 10:34:12 +00:00
|
|
|
|
2021-09-22 08:18:21 +00:00
|
|
|
"github.com/milvus-io/milvus/internal/proto/internalpb"
|
|
|
|
|
2021-06-18 13:30:08 +00:00
|
|
|
rc "github.com/milvus-io/milvus/internal/distributed/rootcoord"
|
2021-04-22 06:45:57 +00:00
|
|
|
"github.com/milvus-io/milvus/internal/msgstream"
|
2021-02-24 01:48:17 +00:00
|
|
|
"github.com/opentracing/opentracing-go"
|
2021-01-29 10:34:12 +00:00
|
|
|
)
|
|
|
|
|
2021-09-29 15:20:11 +00:00
|
|
|
// RootCoord implements RoodCoord grpc server
|
2021-06-18 07:20:08 +00:00
|
|
|
type RootCoord struct {
|
2021-01-29 10:34:12 +00:00
|
|
|
ctx context.Context
|
2021-06-18 13:30:08 +00:00
|
|
|
svr *rc.Server
|
2021-02-24 01:48:17 +00:00
|
|
|
|
|
|
|
tracer opentracing.Tracer
|
|
|
|
closer io.Closer
|
2021-01-29 10:34:12 +00:00
|
|
|
}
|
|
|
|
|
2021-06-18 07:20:08 +00:00
|
|
|
// NewRootCoord creates a new RoorCoord
|
|
|
|
func NewRootCoord(ctx context.Context, factory msgstream.Factory) (*RootCoord, error) {
|
2021-06-18 13:30:08 +00:00
|
|
|
svr, err := rc.NewServer(ctx, factory)
|
2021-02-05 06:09:55 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2021-06-18 07:20:08 +00:00
|
|
|
return &RootCoord{
|
2021-01-29 10:34:12 +00:00
|
|
|
ctx: ctx,
|
|
|
|
svr: svr,
|
|
|
|
}, nil
|
|
|
|
}
|
|
|
|
|
2021-06-18 07:20:08 +00:00
|
|
|
// Run starts service
|
|
|
|
func (rc *RootCoord) Run() error {
|
|
|
|
if err := rc.svr.Run(); err != nil {
|
2021-01-29 10:34:12 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2021-06-18 07:20:08 +00:00
|
|
|
// Stop terminates service
|
|
|
|
func (rc *RootCoord) Stop() error {
|
|
|
|
if err := rc.svr.Stop(); err != nil {
|
2021-02-23 03:40:30 +00:00
|
|
|
return err
|
2021-02-01 04:04:21 +00:00
|
|
|
}
|
|
|
|
return nil
|
2021-01-29 10:34:12 +00:00
|
|
|
}
|
2021-09-22 08:18:21 +00:00
|
|
|
|
2021-09-29 15:20:11 +00:00
|
|
|
// GetComponentStates returns RootCoord's states
|
2021-09-22 08:18:21 +00:00
|
|
|
func (rc *RootCoord) GetComponentStates(ctx context.Context, request *internalpb.GetComponentStatesRequest) (*internalpb.ComponentStates, error) {
|
|
|
|
return rc.svr.GetComponentStates(ctx, request)
|
|
|
|
}
|