2021-04-19 05:47:10 +00: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-16 02:12:14 +00:00
|
|
|
package querynode
|
2020-08-25 07:45:19 +00:00
|
|
|
|
2020-09-02 02:38:08 +00:00
|
|
|
/*
|
|
|
|
|
2020-10-23 10:01:24 +00:00
|
|
|
#cgo CFLAGS: -I${SRCDIR}/../core/output/include
|
2020-09-02 02:38:08 +00:00
|
|
|
|
2020-10-31 07:11:47 +00:00
|
|
|
#cgo LDFLAGS: -L${SRCDIR}/../core/output/lib -lmilvus_segcore -Wl,-rpath=${SRCDIR}/../core/output/lib
|
2020-09-02 02:38:08 +00:00
|
|
|
|
2020-11-25 02:31:51 +00:00
|
|
|
#include "segcore/collection_c.h"
|
|
|
|
#include "segcore/segment_c.h"
|
2021-04-16 06:02:49 +00:00
|
|
|
#include "segcore/segcore_init_c.h"
|
2020-09-02 02:38:08 +00:00
|
|
|
|
|
|
|
*/
|
2020-08-25 07:45:19 +00:00
|
|
|
import "C"
|
2020-09-02 02:38:08 +00:00
|
|
|
|
2020-08-25 07:45:19 +00:00
|
|
|
import (
|
2020-10-15 13:31:50 +00:00
|
|
|
"context"
|
2021-03-22 08:36:10 +00:00
|
|
|
"errors"
|
2021-06-21 10:22:13 +00:00
|
|
|
"strconv"
|
|
|
|
"sync/atomic"
|
2021-09-11 06:40:01 +00:00
|
|
|
"unsafe"
|
2021-06-21 10:22:13 +00:00
|
|
|
|
2021-06-19 03:45:09 +00:00
|
|
|
"go.uber.org/zap"
|
2021-01-11 10:35:54 +00:00
|
|
|
|
2021-07-13 06:16:00 +00:00
|
|
|
"github.com/milvus-io/milvus/internal/kv"
|
|
|
|
etcdkv "github.com/milvus-io/milvus/internal/kv/etcd"
|
2021-04-22 06:45:57 +00:00
|
|
|
"github.com/milvus-io/milvus/internal/log"
|
|
|
|
"github.com/milvus-io/milvus/internal/msgstream"
|
|
|
|
"github.com/milvus-io/milvus/internal/proto/internalpb"
|
|
|
|
"github.com/milvus-io/milvus/internal/types"
|
2021-07-13 06:16:00 +00:00
|
|
|
"github.com/milvus-io/milvus/internal/util/retry"
|
2021-05-21 11:28:52 +00:00
|
|
|
"github.com/milvus-io/milvus/internal/util/sessionutil"
|
|
|
|
"github.com/milvus-io/milvus/internal/util/typeutil"
|
2020-08-25 07:45:19 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
type QueryNode struct {
|
2020-12-08 06:41:04 +00:00
|
|
|
queryNodeLoopCtx context.Context
|
2020-12-10 08:31:09 +00:00
|
|
|
queryNodeLoopCancel context.CancelFunc
|
2020-10-15 13:31:50 +00:00
|
|
|
|
2021-07-13 06:16:00 +00:00
|
|
|
stateCode atomic.Value
|
2020-08-25 07:45:19 +00:00
|
|
|
|
2021-05-28 02:26:30 +00:00
|
|
|
// internal components
|
|
|
|
historical *historical
|
|
|
|
streaming *streaming
|
2020-08-25 07:45:19 +00:00
|
|
|
|
2021-01-15 07:28:54 +00:00
|
|
|
// internal services
|
2021-06-23 12:26:10 +00:00
|
|
|
queryService *queryService
|
2021-01-18 02:09:17 +00:00
|
|
|
|
2021-01-26 05:41:41 +00:00
|
|
|
// clients
|
2021-06-22 08:44:09 +00:00
|
|
|
rootCoord types.RootCoord
|
|
|
|
indexCoord types.IndexCoord
|
2021-02-08 06:30:54 +00:00
|
|
|
|
|
|
|
msFactory msgstream.Factory
|
2021-04-12 01:18:43 +00:00
|
|
|
scheduler *taskScheduler
|
2021-05-21 11:28:52 +00:00
|
|
|
|
|
|
|
session *sessionutil.Session
|
2021-06-19 03:45:09 +00:00
|
|
|
|
|
|
|
minioKV kv.BaseKV // minio minioKV
|
|
|
|
etcdKV *etcdkv.EtcdKV
|
2020-11-05 02:52:50 +00:00
|
|
|
}
|
2020-09-07 09:01:46 +00:00
|
|
|
|
2021-07-13 06:16:00 +00:00
|
|
|
func NewQueryNode(ctx context.Context, factory msgstream.Factory) *QueryNode {
|
2021-01-27 01:50:52 +00:00
|
|
|
ctx1, cancel := context.WithCancel(ctx)
|
|
|
|
node := &QueryNode{
|
|
|
|
queryNodeLoopCtx: ctx1,
|
|
|
|
queryNodeLoopCancel: cancel,
|
2021-06-23 12:26:10 +00:00
|
|
|
queryService: nil,
|
2021-05-28 02:26:30 +00:00
|
|
|
msFactory: factory,
|
2021-01-27 01:50:52 +00:00
|
|
|
}
|
|
|
|
|
2021-04-12 01:18:43 +00:00
|
|
|
node.scheduler = newTaskScheduler(ctx1)
|
2021-03-12 06:22:09 +00:00
|
|
|
node.UpdateStateCode(internalpb.StateCode_Abnormal)
|
2021-01-27 01:50:52 +00:00
|
|
|
|
2021-02-23 03:40:30 +00:00
|
|
|
return node
|
2020-09-15 07:53:10 +00:00
|
|
|
}
|
|
|
|
|
2021-05-25 07:06:05 +00:00
|
|
|
// Register register query node at etcd
|
|
|
|
func (node *QueryNode) Register() error {
|
2021-07-13 06:16:00 +00:00
|
|
|
log.Debug("query node session info", zap.String("metaPath", Params.MetaRootPath), zap.Strings("etcdEndPoints", Params.EtcdEndpoints))
|
2021-06-11 14:04:41 +00:00
|
|
|
node.session = sessionutil.NewSession(node.queryNodeLoopCtx, Params.MetaRootPath, Params.EtcdEndpoints)
|
2021-05-25 07:06:05 +00:00
|
|
|
node.session.Init(typeutil.QueryNodeRole, Params.QueryNodeIP+":"+strconv.FormatInt(Params.QueryNodePort, 10), false)
|
|
|
|
Params.QueryNodeID = node.session.ServerID
|
2021-06-19 03:45:09 +00:00
|
|
|
log.Debug("query nodeID", zap.Int64("nodeID", Params.QueryNodeID))
|
2021-07-13 06:16:00 +00:00
|
|
|
log.Debug("query node address", zap.String("address", node.session.Address))
|
2021-06-19 04:38:06 +00:00
|
|
|
|
|
|
|
// This param needs valid QueryNodeID
|
|
|
|
Params.initMsgChannelSubName()
|
2021-05-25 07:06:05 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2021-01-21 02:01:29 +00:00
|
|
|
func (node *QueryNode) Init() error {
|
2021-06-19 03:45:09 +00:00
|
|
|
//ctx := context.Background()
|
|
|
|
connectEtcdFn := func() error {
|
2021-08-13 03:04:09 +00:00
|
|
|
etcdKV, err := etcdkv.NewEtcdKV(Params.EtcdEndpoints, Params.MetaRootPath)
|
2021-06-19 03:45:09 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
node.etcdKV = etcdKV
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
log.Debug("queryNode try to connect etcd")
|
2021-06-23 03:48:06 +00:00
|
|
|
err := retry.Do(node.queryNodeLoopCtx, connectEtcdFn, retry.Attempts(300))
|
2021-06-19 03:45:09 +00:00
|
|
|
if err != nil {
|
|
|
|
log.Debug("queryNode try to connect etcd failed", zap.Error(err))
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
log.Debug("queryNode try to connect etcd success")
|
2021-05-14 02:05:18 +00:00
|
|
|
|
2021-05-28 02:26:30 +00:00
|
|
|
node.historical = newHistorical(node.queryNodeLoopCtx,
|
2021-06-21 09:28:03 +00:00
|
|
|
node.rootCoord,
|
|
|
|
node.indexCoord,
|
2021-06-19 03:45:09 +00:00
|
|
|
node.msFactory,
|
|
|
|
node.etcdKV)
|
|
|
|
node.streaming = newStreaming(node.queryNodeLoopCtx, node.msFactory, node.etcdKV)
|
2021-05-28 02:26:30 +00:00
|
|
|
|
2021-09-11 06:40:01 +00:00
|
|
|
cConfigDir := C.CString(Params.BaseTable.GetConfigDir())
|
|
|
|
C.SegcoreInit(cConfigDir)
|
|
|
|
C.free(unsafe.Pointer(cConfigDir))
|
2021-01-21 07:20:23 +00:00
|
|
|
|
2021-06-21 09:28:03 +00:00
|
|
|
if node.rootCoord == nil {
|
2021-06-22 08:44:09 +00:00
|
|
|
log.Error("null root coordinator detected")
|
2021-01-30 08:02:10 +00:00
|
|
|
}
|
|
|
|
|
2021-06-21 09:28:03 +00:00
|
|
|
if node.indexCoord == nil {
|
2021-06-22 08:44:09 +00:00
|
|
|
log.Error("null index coordinator detected")
|
2021-01-26 05:41:41 +00:00
|
|
|
}
|
|
|
|
|
2021-01-30 08:02:10 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (node *QueryNode) Start() error {
|
2021-02-08 06:30:54 +00:00
|
|
|
var err error
|
|
|
|
m := map[string]interface{}{
|
|
|
|
"PulsarAddress": Params.PulsarAddress,
|
|
|
|
"ReceiveBufSize": 1024,
|
|
|
|
"PulsarBufSize": 1024}
|
|
|
|
err = node.msFactory.SetParams(m)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2021-01-19 03:37:16 +00:00
|
|
|
// init services and manager
|
2021-05-28 02:26:30 +00:00
|
|
|
// TODO: pass node.streaming.replica to search service
|
2021-06-23 12:26:10 +00:00
|
|
|
node.queryService = newQueryService(node.queryNodeLoopCtx,
|
2021-06-15 04:41:40 +00:00
|
|
|
node.historical,
|
|
|
|
node.streaming,
|
2021-05-28 07:40:32 +00:00
|
|
|
node.msFactory)
|
2020-09-15 07:53:10 +00:00
|
|
|
|
2021-04-12 01:18:43 +00:00
|
|
|
// start task scheduler
|
|
|
|
go node.scheduler.Start()
|
|
|
|
|
2021-01-19 03:37:16 +00:00
|
|
|
// start services
|
2021-05-28 02:26:30 +00:00
|
|
|
go node.historical.start()
|
2021-03-12 06:22:09 +00:00
|
|
|
node.UpdateStateCode(internalpb.StateCode_Healthy)
|
2021-01-21 02:01:29 +00:00
|
|
|
return nil
|
2020-11-05 02:52:50 +00:00
|
|
|
}
|
2020-09-15 07:53:10 +00:00
|
|
|
|
2021-01-21 02:01:29 +00:00
|
|
|
func (node *QueryNode) Stop() error {
|
2021-03-12 06:22:09 +00:00
|
|
|
node.UpdateStateCode(internalpb.StateCode_Abnormal)
|
2020-12-08 06:41:04 +00:00
|
|
|
node.queryNodeLoopCancel()
|
|
|
|
|
2020-11-24 08:12:39 +00:00
|
|
|
// close services
|
2021-05-28 02:26:30 +00:00
|
|
|
if node.historical != nil {
|
|
|
|
node.historical.close()
|
|
|
|
}
|
|
|
|
if node.streaming != nil {
|
|
|
|
node.streaming.close()
|
2020-11-24 08:12:39 +00:00
|
|
|
}
|
2021-06-23 12:26:10 +00:00
|
|
|
if node.queryService != nil {
|
|
|
|
node.queryService.close()
|
2020-11-24 08:12:39 +00:00
|
|
|
}
|
2021-06-23 12:26:10 +00:00
|
|
|
if node.queryService != nil {
|
|
|
|
node.queryService.close()
|
2021-05-31 10:08:32 +00:00
|
|
|
}
|
2021-01-21 02:01:29 +00:00
|
|
|
return nil
|
2021-01-19 03:37:16 +00:00
|
|
|
}
|
|
|
|
|
2021-03-12 06:22:09 +00:00
|
|
|
func (node *QueryNode) UpdateStateCode(code internalpb.StateCode) {
|
2021-02-23 03:40:30 +00:00
|
|
|
node.stateCode.Store(code)
|
|
|
|
}
|
|
|
|
|
2021-06-21 09:28:03 +00:00
|
|
|
func (node *QueryNode) SetRootCoord(rc types.RootCoord) error {
|
|
|
|
if rc == nil {
|
2021-06-22 08:44:09 +00:00
|
|
|
return errors.New("null root coordinator interface")
|
2021-01-27 06:41:56 +00:00
|
|
|
}
|
2021-06-21 09:28:03 +00:00
|
|
|
node.rootCoord = rc
|
2021-01-27 06:41:56 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2021-06-21 09:28:03 +00:00
|
|
|
func (node *QueryNode) SetIndexCoord(index types.IndexCoord) error {
|
2021-01-26 05:41:41 +00:00
|
|
|
if index == nil {
|
2021-06-22 08:44:09 +00:00
|
|
|
return errors.New("null index coordinator interface")
|
2021-01-26 05:41:41 +00:00
|
|
|
}
|
2021-06-21 09:28:03 +00:00
|
|
|
node.indexCoord = index
|
2021-01-26 05:41:41 +00:00
|
|
|
return nil
|
|
|
|
}
|