milvus/cmd/distributed/components/data_node.go

54 lines
1.4 KiB
Go
Raw Normal View History

// 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.
package components
import (
"context"
grpcdatanode "github.com/zilliztech/milvus-distributed/internal/distributed/datanode"
"github.com/zilliztech/milvus-distributed/internal/log"
"github.com/zilliztech/milvus-distributed/internal/msgstream"
)
type DataNode struct {
ctx context.Context
svr *grpcdatanode.Server
}
func NewDataNode(ctx context.Context, factory msgstream.Factory) (*DataNode, error) {
svr, err := grpcdatanode.New(ctx, factory)
if err != nil {
return nil, err
}
return &DataNode{
ctx: ctx,
svr: svr,
}, nil
}
func (d *DataNode) Run() error {
if err := d.svr.Run(); err != nil {
panic(err)
}
log.Debug("Datanode successfully started")
return nil
}
func (d *DataNode) Stop() error {
if err := d.svr.Stop(); err != nil {
return err
}
return nil
}