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 16:22:28 +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-04-22 14:45:57 +08:00
|
|
|
grpcdatanode "github.com/milvus-io/milvus/internal/distributed/datanode"
|
|
|
|
"github.com/milvus-io/milvus/internal/log"
|
2022-10-10 15:55:22 +08:00
|
|
|
"github.com/milvus-io/milvus/internal/util/dependency"
|
2022-10-14 14:19:24 +08:00
|
|
|
"github.com/milvus-io/milvus/internal/util/typeutil"
|
2021-01-30 16:22:28 +08:00
|
|
|
)
|
|
|
|
|
2021-09-28 22:30:05 +08:00
|
|
|
// DataNode implements DataNode grpc server
|
2021-01-30 16:22:28 +08:00
|
|
|
type DataNode struct {
|
|
|
|
ctx context.Context
|
2021-02-23 11:40:30 +08:00
|
|
|
svr *grpcdatanode.Server
|
2021-01-30 16:22:28 +08:00
|
|
|
}
|
|
|
|
|
2021-06-18 15:20:08 +08:00
|
|
|
// NewDataNode creates a new DataNode
|
2022-04-07 22:05:32 +08:00
|
|
|
func NewDataNode(ctx context.Context, factory dependency.Factory) (*DataNode, error) {
|
2021-05-08 14:07:04 +08:00
|
|
|
svr, err := grpcdatanode.NewServer(ctx, factory)
|
2021-01-30 16:22:28 +08:00
|
|
|
if err != nil {
|
2021-02-23 11:40:30 +08:00
|
|
|
return nil, err
|
2021-01-30 16:22:28 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return &DataNode{
|
|
|
|
ctx: ctx,
|
|
|
|
svr: svr,
|
|
|
|
}, nil
|
|
|
|
}
|
|
|
|
|
2021-06-18 15:20:08 +08:00
|
|
|
// Run starts service
|
2021-01-30 16:22:28 +08:00
|
|
|
func (d *DataNode) Run() error {
|
2021-02-23 11:40:30 +08:00
|
|
|
if err := d.svr.Run(); err != nil {
|
2021-01-30 16:22:28 +08:00
|
|
|
panic(err)
|
|
|
|
}
|
2021-02-26 10:13:36 +08:00
|
|
|
log.Debug("Datanode successfully started")
|
2021-01-30 16:22:28 +08:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2021-06-18 15:20:08 +08:00
|
|
|
// Stop terminates service
|
2021-01-30 16:22:28 +08:00
|
|
|
func (d *DataNode) Stop() error {
|
2021-02-23 11:40:30 +08:00
|
|
|
if err := d.svr.Stop(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return nil
|
2021-01-30 16:22:28 +08:00
|
|
|
}
|
2021-09-22 16:18:21 +08:00
|
|
|
|
2021-09-28 22:30:05 +08:00
|
|
|
// GetComponentStates returns DataNode's states
|
2022-10-14 14:19:24 +08:00
|
|
|
func (d *DataNode) Health(ctx context.Context) commonpb.StateCode {
|
|
|
|
resp, err := d.svr.GetComponentStates(ctx, &milvuspb.GetComponentStatesRequest{})
|
|
|
|
if err != nil {
|
|
|
|
return commonpb.StateCode_Abnormal
|
|
|
|
}
|
|
|
|
return resp.State.GetStateCode()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (d *DataNode) GetName() string {
|
|
|
|
return typeutil.DataNodeRole
|
2021-09-22 16:18:21 +08:00
|
|
|
}
|