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-02-01 12:04:21 +08:00
|
|
|
package components
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
2021-02-09 17:09:26 +08:00
|
|
|
|
2022-10-10 15:55:22 +08:00
|
|
|
"github.com/milvus-io/milvus/api/milvuspb"
|
|
|
|
|
2021-10-28 18:00:38 +08:00
|
|
|
"github.com/milvus-io/milvus/internal/log"
|
2022-04-07 22:05:32 +08:00
|
|
|
"github.com/milvus-io/milvus/internal/util/dependency"
|
2021-09-22 16:18:21 +08:00
|
|
|
|
2021-06-22 16:44:09 +08:00
|
|
|
grpcquerycoord "github.com/milvus-io/milvus/internal/distributed/querycoord"
|
2021-02-01 12:04:21 +08:00
|
|
|
)
|
|
|
|
|
2021-09-29 23:20:11 +08:00
|
|
|
// QueryCoord implements QueryCoord grpc server
|
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
|
2022-04-07 22:05:32 +08:00
|
|
|
func NewQueryCoord(ctx context.Context, factory dependency.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-10-28 18:00:38 +08:00
|
|
|
log.Debug("QueryCoord successfully started")
|
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
|
|
|
}
|
2021-09-22 16:18:21 +08:00
|
|
|
|
2021-09-29 23:20:11 +08:00
|
|
|
// GetComponentStates returns QueryCoord's states
|
2022-10-10 15:55:22 +08:00
|
|
|
func (qs *QueryCoord) GetComponentStates(ctx context.Context, request *milvuspb.GetComponentStatesRequest) (*milvuspb.ComponentStates, error) {
|
2021-09-22 16:18:21 +08:00
|
|
|
return qs.svr.GetComponentStates(ctx, request)
|
|
|
|
}
|