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"
|
|
|
|
|
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"
|
|
|
|
|
2021-06-22 10:42:07 +08:00
|
|
|
grpcdatacoordclient "github.com/milvus-io/milvus/internal/distributed/datacoord"
|
2022-03-03 21:57:56 +08:00
|
|
|
"github.com/milvus-io/milvus/internal/mq/msgstream"
|
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
|
|
|
|
func NewDataCoord(ctx context.Context, factory msgstream.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
|
2021-09-22 16:18:21 +08:00
|
|
|
func (s *DataCoord) GetComponentStates(ctx context.Context, request *internalpb.GetComponentStatesRequest) (*internalpb.ComponentStates, error) {
|
|
|
|
return s.svr.GetComponentStates(ctx, request)
|
|
|
|
}
|