2021-04-19 19:28:11 +08:00
|
|
|
// 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.
|
|
|
|
|
2021-01-30 16:22:28 +08:00
|
|
|
package components
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
|
2021-02-23 11:40:30 +08:00
|
|
|
grpcdatanode "github.com/zilliztech/milvus-distributed/internal/distributed/datanode"
|
2021-02-26 10:13:36 +08:00
|
|
|
"github.com/zilliztech/milvus-distributed/internal/log"
|
2021-02-08 14:30:54 +08:00
|
|
|
"github.com/zilliztech/milvus-distributed/internal/msgstream"
|
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-02-08 14:30:54 +08:00
|
|
|
func NewDataNode(ctx context.Context, factory msgstream.Factory) (*DataNode, error) {
|
2021-01-30 16:22:28 +08:00
|
|
|
|
2021-02-23 11:40:30 +08:00
|
|
|
svr, err := grpcdatanode.New(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
|
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
}
|