2021-10-09 18:03:34 +08:00
|
|
|
// Licensed to the LF AI & Data foundation under one
|
|
|
|
// or more contributor license agreements. See the NOTICE file
|
|
|
|
// distributed with this work for additional information
|
|
|
|
// regarding copyright ownership. The ASF licenses this file
|
|
|
|
// to you under the Apache License, Version 2.0 (the
|
|
|
|
// "License"); you may not use this file except in compliance
|
2021-04-19 19:28:11 +08:00
|
|
|
// with the License. You may obtain a copy of the License at
|
|
|
|
//
|
2021-10-09 18:03:34 +08:00
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
2021-04-19 19:28:11 +08:00
|
|
|
//
|
2021-10-09 18:03:34 +08:00
|
|
|
// 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-04-19 19:28:11 +08:00
|
|
|
|
2021-01-29 18:34:12 +08:00
|
|
|
package components
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
2021-02-24 09:48:17 +08:00
|
|
|
"io"
|
2021-01-29 18:34:12 +08:00
|
|
|
|
2022-08-11 12:12:38 +08:00
|
|
|
rc "github.com/milvus-io/milvus/internal/distributed/rootcoord"
|
2021-10-28 18:00:38 +08:00
|
|
|
"github.com/milvus-io/milvus/internal/log"
|
2021-09-22 16:18:21 +08:00
|
|
|
"github.com/milvus-io/milvus/internal/proto/internalpb"
|
2022-04-07 22:05:32 +08:00
|
|
|
"github.com/milvus-io/milvus/internal/util/dependency"
|
2021-02-24 09:48:17 +08:00
|
|
|
"github.com/opentracing/opentracing-go"
|
2022-08-11 12:12:38 +08:00
|
|
|
"go.uber.org/zap"
|
2021-01-29 18:34:12 +08:00
|
|
|
)
|
|
|
|
|
2021-09-29 23:20:11 +08:00
|
|
|
// RootCoord implements RoodCoord grpc server
|
2021-06-18 15:20:08 +08:00
|
|
|
type RootCoord struct {
|
2021-01-29 18:34:12 +08:00
|
|
|
ctx context.Context
|
2021-06-18 21:30:08 +08:00
|
|
|
svr *rc.Server
|
2021-02-24 09:48:17 +08:00
|
|
|
|
|
|
|
tracer opentracing.Tracer
|
|
|
|
closer io.Closer
|
2021-01-29 18:34:12 +08:00
|
|
|
}
|
|
|
|
|
2021-06-18 15:20:08 +08:00
|
|
|
// NewRootCoord creates a new RoorCoord
|
2022-04-07 22:05:32 +08:00
|
|
|
func NewRootCoord(ctx context.Context, factory dependency.Factory) (*RootCoord, error) {
|
2021-06-18 21:30:08 +08:00
|
|
|
svr, err := rc.NewServer(ctx, factory)
|
2021-02-05 14:09:55 +08:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2021-06-18 15:20:08 +08:00
|
|
|
return &RootCoord{
|
2021-01-29 18:34:12 +08:00
|
|
|
ctx: ctx,
|
|
|
|
svr: svr,
|
|
|
|
}, nil
|
|
|
|
}
|
|
|
|
|
2021-06-18 15:20:08 +08:00
|
|
|
// Run starts service
|
|
|
|
func (rc *RootCoord) Run() error {
|
|
|
|
if err := rc.svr.Run(); err != nil {
|
2022-08-11 12:12:38 +08:00
|
|
|
log.Error("RootCoord starts error", zap.Error(err))
|
2021-01-29 18:34:12 +08:00
|
|
|
return err
|
|
|
|
}
|
2021-10-28 18:00:38 +08:00
|
|
|
log.Debug("RootCoord successfully started")
|
2021-01-29 18:34:12 +08:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2021-06-18 15:20:08 +08:00
|
|
|
// Stop terminates service
|
|
|
|
func (rc *RootCoord) Stop() error {
|
|
|
|
if err := rc.svr.Stop(); err != nil {
|
2021-02-23 11:40:30 +08:00
|
|
|
return err
|
2021-02-01 12:04:21 +08:00
|
|
|
}
|
|
|
|
return nil
|
2021-01-29 18:34:12 +08:00
|
|
|
}
|
2021-09-22 16:18:21 +08:00
|
|
|
|
2021-09-29 23:20:11 +08:00
|
|
|
// GetComponentStates returns RootCoord's states
|
2021-09-22 16:18:21 +08:00
|
|
|
func (rc *RootCoord) GetComponentStates(ctx context.Context, request *internalpb.GetComponentStatesRequest) (*internalpb.ComponentStates, error) {
|
|
|
|
return rc.svr.GetComponentStates(ctx, request)
|
|
|
|
}
|