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-30 11:49:48 +08:00
|
|
|
package components
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
|
2022-10-16 20:49:27 +08:00
|
|
|
"github.com/milvus-io/milvus-proto/go-api/commonpb"
|
|
|
|
"github.com/milvus-io/milvus-proto/go-api/milvuspb"
|
2021-06-22 10:42:07 +08:00
|
|
|
grpcdatacoordclient "github.com/milvus-io/milvus/internal/distributed/datacoord"
|
2023-04-06 19:14:32 +08:00
|
|
|
"github.com/milvus-io/milvus/internal/util/dependency"
|
|
|
|
"github.com/milvus-io/milvus/pkg/log"
|
|
|
|
"github.com/milvus-io/milvus/pkg/util/typeutil"
|
2021-01-30 11:49:48 +08:00
|
|
|
)
|
|
|
|
|
2021-09-27 19:09:58 +08:00
|
|
|
// DataCoord implements grpc server of DataCoord server
|
2021-06-18 15:20:08 +08:00
|
|
|
type DataCoord struct {
|
2021-02-23 11:40:30 +08:00
|
|
|
ctx context.Context
|
2021-06-22 10:42:07 +08:00
|
|
|
svr *grpcdatacoordclient.Server
|
2021-01-30 11:49:48 +08:00
|
|
|
}
|
|
|
|
|
2021-06-18 15:20:08 +08:00
|
|
|
// NewDataCoord creates a new DataCoord
|
2022-04-07 22:05:32 +08:00
|
|
|
func NewDataCoord(ctx context.Context, factory dependency.Factory) (*DataCoord, error) {
|
2021-12-29 14:35:21 +08:00
|
|
|
s := grpcdatacoordclient.NewServer(ctx, factory)
|
2021-01-30 11:49:48 +08:00
|
|
|
|
2021-06-18 15:20:08 +08:00
|
|
|
return &DataCoord{
|
2021-02-23 11:40:30 +08:00
|
|
|
ctx: ctx,
|
|
|
|
svr: s,
|
2021-01-30 11:49:48 +08:00
|
|
|
}, nil
|
|
|
|
}
|
|
|
|
|
2021-06-18 15:20:08 +08:00
|
|
|
// Run starts service
|
|
|
|
func (s *DataCoord) Run() error {
|
2021-02-23 11:40:30 +08:00
|
|
|
if err := s.svr.Run(); err != nil {
|
2021-01-30 11:49:48 +08:00
|
|
|
return err
|
|
|
|
}
|
2021-10-28 18:00:38 +08:00
|
|
|
log.Debug("DataCoord successfully started")
|
2021-01-30 11:49:48 +08:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2021-06-18 15:20:08 +08:00
|
|
|
// Stop terminates service
|
|
|
|
func (s *DataCoord) Stop() error {
|
2021-02-23 11:40:30 +08:00
|
|
|
if err := s.svr.Stop(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2021-01-30 11:49:48 +08:00
|
|
|
return nil
|
|
|
|
}
|
2021-09-22 16:18:21 +08:00
|
|
|
|
2021-09-27 19:09:58 +08:00
|
|
|
// GetComponentStates returns DataCoord's states
|
2022-10-14 14:19:24 +08:00
|
|
|
func (s *DataCoord) Health(ctx context.Context) commonpb.StateCode {
|
|
|
|
resp, err := s.svr.GetComponentStates(ctx, &milvuspb.GetComponentStatesRequest{})
|
|
|
|
if err != nil {
|
|
|
|
return commonpb.StateCode_Abnormal
|
|
|
|
}
|
|
|
|
return resp.State.GetStateCode()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *DataCoord) GetName() string {
|
|
|
|
return typeutil.DataCoordRole
|
2021-09-22 16:18:21 +08:00
|
|
|
}
|