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-02-01 12:04:21 +08:00
|
|
|
package components
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
2021-02-09 17:09:26 +08:00
|
|
|
|
2021-06-22 16:44:09 +08:00
|
|
|
grpcquerycoord "github.com/milvus-io/milvus/internal/distributed/querycoord"
|
2021-04-22 14:45:57 +08:00
|
|
|
"github.com/milvus-io/milvus/internal/msgstream"
|
2021-02-01 12:04:21 +08:00
|
|
|
)
|
|
|
|
|
2021-06-18 15:20:08 +08:00
|
|
|
type QueryCoord struct {
|
2021-02-02 09:52:42 +08:00
|
|
|
ctx context.Context
|
2021-06-22 16:44:09 +08:00
|
|
|
svr *grpcquerycoord.Server
|
2021-02-01 12:04:21 +08:00
|
|
|
}
|
|
|
|
|
2021-06-18 15:20:08 +08:00
|
|
|
// NewQueryCoord creates a new QueryCoord
|
|
|
|
func NewQueryCoord(ctx context.Context, factory msgstream.Factory) (*QueryCoord, error) {
|
2021-06-22 16:44:09 +08:00
|
|
|
svr, err := grpcquerycoord.NewServer(ctx, factory)
|
2021-02-05 17:57:41 +08:00
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
2021-02-02 09:52:42 +08:00
|
|
|
|
2021-06-18 15:20:08 +08:00
|
|
|
return &QueryCoord{
|
2021-02-23 11:40:30 +08:00
|
|
|
ctx: ctx,
|
|
|
|
svr: svr,
|
2021-02-02 09:52:42 +08:00
|
|
|
}, nil
|
2021-02-01 12:04:21 +08:00
|
|
|
}
|
|
|
|
|
2021-06-18 15:20:08 +08:00
|
|
|
// Run starts service
|
|
|
|
func (qs *QueryCoord) Run() error {
|
2021-02-23 11:40:30 +08:00
|
|
|
if err := qs.svr.Run(); err != nil {
|
2021-02-02 09:52:42 +08:00
|
|
|
panic(err)
|
|
|
|
}
|
2021-02-01 12:04:21 +08:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2021-06-18 15:20:08 +08:00
|
|
|
// Stop terminates service
|
|
|
|
func (qs *QueryCoord) Stop() error {
|
2021-02-23 11:40:30 +08:00
|
|
|
if err := qs.svr.Stop(); err != nil {
|
|
|
|
return err
|
2021-02-09 17:09:26 +08:00
|
|
|
}
|
2021-02-23 11:40:30 +08:00
|
|
|
return nil
|
2021-02-01 12:04:21 +08:00
|
|
|
}
|