2021-04-19 13:47:10 +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-16 10:12:14 +08:00
|
|
|
package querynode
|
2020-08-25 15:45:19 +08:00
|
|
|
|
2020-09-02 10:38:08 +08:00
|
|
|
/*
|
|
|
|
|
2020-10-23 18:01:24 +08:00
|
|
|
#cgo CFLAGS: -I${SRCDIR}/../core/output/include
|
2020-09-02 10:38:08 +08:00
|
|
|
|
2020-10-31 15:11:47 +08:00
|
|
|
#cgo LDFLAGS: -L${SRCDIR}/../core/output/lib -lmilvus_segcore -Wl,-rpath=${SRCDIR}/../core/output/lib
|
2020-09-02 10:38:08 +08:00
|
|
|
|
2020-11-25 10:31:51 +08:00
|
|
|
#include "segcore/collection_c.h"
|
|
|
|
#include "segcore/segment_c.h"
|
2021-04-16 14:02:49 +08:00
|
|
|
#include "segcore/segcore_init_c.h"
|
2020-09-02 10:38:08 +08:00
|
|
|
|
|
|
|
*/
|
2020-08-25 15:45:19 +08:00
|
|
|
import "C"
|
2020-09-02 10:38:08 +08:00
|
|
|
|
2020-08-25 15:45:19 +08:00
|
|
|
import (
|
2020-10-15 21:31:50 +08:00
|
|
|
"context"
|
2021-03-22 16:36:10 +08:00
|
|
|
"errors"
|
2021-06-21 18:22:13 +08:00
|
|
|
"strconv"
|
2021-09-24 21:03:56 +08:00
|
|
|
"sync"
|
2021-06-21 18:22:13 +08:00
|
|
|
"sync/atomic"
|
2021-09-15 12:57:48 +08:00
|
|
|
"unsafe"
|
2021-06-21 18:22:13 +08:00
|
|
|
|
2021-06-19 11:45:09 +08:00
|
|
|
"go.uber.org/zap"
|
2021-01-11 18:35:54 +08:00
|
|
|
|
2021-07-13 14:16:00 +08:00
|
|
|
"github.com/milvus-io/milvus/internal/kv"
|
|
|
|
etcdkv "github.com/milvus-io/milvus/internal/kv/etcd"
|
2021-04-22 14:45:57 +08: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 14:16:00 +08:00
|
|
|
"github.com/milvus-io/milvus/internal/util/retry"
|
2021-05-21 19:28:52 +08:00
|
|
|
"github.com/milvus-io/milvus/internal/util/sessionutil"
|
|
|
|
"github.com/milvus-io/milvus/internal/util/typeutil"
|
2020-08-25 15:45:19 +08:00
|
|
|
)
|
|
|
|
|
2021-09-26 20:16:12 +08:00
|
|
|
// QueryNode communicates with outside services and union all
|
|
|
|
// services in querynode package.
|
|
|
|
//
|
|
|
|
// QueryNode implements `types.Component`, `types.QueryNode` interfaces.
|
|
|
|
// `rootCoord` is a grpc client of root coordinator.
|
|
|
|
// `indexCoord` is a grpc client of index coordinator.
|
|
|
|
// `stateCode` is current statement of this query node, indicating whether it's healthy.
|
2020-08-25 15:45:19 +08:00
|
|
|
type QueryNode struct {
|
2020-12-08 14:41:04 +08:00
|
|
|
queryNodeLoopCtx context.Context
|
2020-12-10 16:31:09 +08:00
|
|
|
queryNodeLoopCancel context.CancelFunc
|
2020-10-15 21:31:50 +08:00
|
|
|
|
2021-07-13 14:16:00 +08:00
|
|
|
stateCode atomic.Value
|
2020-08-25 15:45:19 +08:00
|
|
|
|
2021-09-24 21:03:56 +08:00
|
|
|
//call once
|
|
|
|
initOnce sync.Once
|
2021-09-23 18:29:55 +08:00
|
|
|
// liveness channel with etcd
|
|
|
|
liveCh <-chan bool
|
|
|
|
|
2021-05-28 10:26:30 +08:00
|
|
|
// internal components
|
|
|
|
historical *historical
|
|
|
|
streaming *streaming
|
2020-08-25 15:45:19 +08:00
|
|
|
|
2021-01-15 15:28:54 +08:00
|
|
|
// internal services
|
2021-06-23 20:26:10 +08:00
|
|
|
queryService *queryService
|
2021-01-18 10:09:17 +08:00
|
|
|
|
2021-01-26 13:41:41 +08:00
|
|
|
// clients
|
2021-06-22 16:44:09 +08:00
|
|
|
rootCoord types.RootCoord
|
|
|
|
indexCoord types.IndexCoord
|
2021-02-08 14:30:54 +08:00
|
|
|
|
|
|
|
msFactory msgstream.Factory
|
2021-04-12 09:18:43 +08:00
|
|
|
scheduler *taskScheduler
|
2021-05-21 19:28:52 +08:00
|
|
|
|
|
|
|
session *sessionutil.Session
|
2021-06-19 11:45:09 +08:00
|
|
|
|
|
|
|
minioKV kv.BaseKV // minio minioKV
|
|
|
|
etcdKV *etcdkv.EtcdKV
|
2020-11-05 10:52:50 +08:00
|
|
|
}
|
2020-09-07 17:01:46 +08:00
|
|
|
|
2021-07-13 14:16:00 +08:00
|
|
|
func NewQueryNode(ctx context.Context, factory msgstream.Factory) *QueryNode {
|
2021-01-27 09:50:52 +08:00
|
|
|
ctx1, cancel := context.WithCancel(ctx)
|
|
|
|
node := &QueryNode{
|
|
|
|
queryNodeLoopCtx: ctx1,
|
|
|
|
queryNodeLoopCancel: cancel,
|
2021-06-23 20:26:10 +08:00
|
|
|
queryService: nil,
|
2021-05-28 10:26:30 +08:00
|
|
|
msFactory: factory,
|
2021-01-27 09:50:52 +08:00
|
|
|
}
|
|
|
|
|
2021-04-12 09:18:43 +08:00
|
|
|
node.scheduler = newTaskScheduler(ctx1)
|
2021-03-12 14:22:09 +08:00
|
|
|
node.UpdateStateCode(internalpb.StateCode_Abnormal)
|
2021-01-27 09:50:52 +08:00
|
|
|
|
2021-02-23 11:40:30 +08:00
|
|
|
return node
|
2020-09-15 15:53:10 +08:00
|
|
|
}
|
|
|
|
|
2021-05-25 15:06:05 +08:00
|
|
|
// Register register query node at etcd
|
|
|
|
func (node *QueryNode) Register() error {
|
2021-07-13 14:16:00 +08:00
|
|
|
log.Debug("query node session info", zap.String("metaPath", Params.MetaRootPath), zap.Strings("etcdEndPoints", Params.EtcdEndpoints))
|
2021-06-11 22:04:41 +08:00
|
|
|
node.session = sessionutil.NewSession(node.queryNodeLoopCtx, Params.MetaRootPath, Params.EtcdEndpoints)
|
2021-09-23 18:29:55 +08:00
|
|
|
node.liveCh = node.session.Init(typeutil.QueryNodeRole, Params.QueryNodeIP+":"+strconv.FormatInt(Params.QueryNodePort, 10), false)
|
2021-05-25 15:06:05 +08:00
|
|
|
Params.QueryNodeID = node.session.ServerID
|
2021-06-19 11:45:09 +08:00
|
|
|
log.Debug("query nodeID", zap.Int64("nodeID", Params.QueryNodeID))
|
2021-07-13 14:16:00 +08:00
|
|
|
log.Debug("query node address", zap.String("address", node.session.Address))
|
2021-06-19 12:38:06 +08:00
|
|
|
|
|
|
|
// This param needs valid QueryNodeID
|
|
|
|
Params.initMsgChannelSubName()
|
2021-09-27 17:37:57 +08:00
|
|
|
//TODO Reset the logger
|
|
|
|
//Params.initLogCfg()
|
2021-05-25 15:06:05 +08:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2021-09-15 10:35:52 +08:00
|
|
|
func (node *QueryNode) InitSegcore() {
|
|
|
|
C.SegcoreInit()
|
|
|
|
|
|
|
|
// override segcore chunk size
|
2021-09-15 15:15:52 +08:00
|
|
|
cChunkRows := C.int64_t(Params.ChunkRows)
|
|
|
|
C.SegcoreSetChunkRows(cChunkRows)
|
2021-09-15 12:57:48 +08:00
|
|
|
|
|
|
|
// override segcore SIMD type
|
|
|
|
cSimdType := C.CString(Params.SimdType)
|
|
|
|
C.SegcoreSetSimdType(cSimdType)
|
|
|
|
C.free(unsafe.Pointer(cSimdType))
|
2021-09-15 10:35:52 +08:00
|
|
|
}
|
|
|
|
|
2021-01-21 10:01:29 +08:00
|
|
|
func (node *QueryNode) Init() error {
|
2021-09-24 21:03:56 +08:00
|
|
|
var initError error = nil
|
|
|
|
node.initOnce.Do(func() {
|
|
|
|
//ctx := context.Background()
|
|
|
|
connectEtcdFn := func() error {
|
|
|
|
etcdKV, err := etcdkv.NewEtcdKV(Params.EtcdEndpoints, Params.MetaRootPath)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
node.etcdKV = etcdKV
|
2021-06-19 11:45:09 +08:00
|
|
|
return err
|
|
|
|
}
|
2021-09-24 21:03:56 +08:00
|
|
|
log.Debug("queryNode try to connect etcd",
|
|
|
|
zap.Any("EtcdEndpoints", Params.EtcdEndpoints),
|
|
|
|
zap.Any("MetaRootPath", Params.MetaRootPath),
|
|
|
|
)
|
|
|
|
err := retry.Do(node.queryNodeLoopCtx, connectEtcdFn, retry.Attempts(300))
|
|
|
|
if err != nil {
|
|
|
|
log.Debug("queryNode try to connect etcd failed", zap.Error(err))
|
|
|
|
initError = err
|
|
|
|
return
|
|
|
|
}
|
|
|
|
log.Debug("queryNode try to connect etcd success",
|
|
|
|
zap.Any("EtcdEndpoints", Params.EtcdEndpoints),
|
|
|
|
zap.Any("MetaRootPath", Params.MetaRootPath),
|
|
|
|
)
|
|
|
|
|
|
|
|
node.historical = newHistorical(node.queryNodeLoopCtx,
|
|
|
|
node.rootCoord,
|
|
|
|
node.indexCoord,
|
|
|
|
node.msFactory,
|
|
|
|
node.etcdKV)
|
|
|
|
node.streaming = newStreaming(node.queryNodeLoopCtx, node.msFactory, node.etcdKV)
|
|
|
|
|
|
|
|
node.InitSegcore()
|
|
|
|
|
|
|
|
if node.rootCoord == nil {
|
|
|
|
log.Error("null root coordinator detected")
|
|
|
|
}
|
2021-01-30 16:02:10 +08:00
|
|
|
|
2021-09-24 21:03:56 +08:00
|
|
|
if node.indexCoord == nil {
|
|
|
|
log.Error("null index coordinator detected")
|
|
|
|
}
|
|
|
|
})
|
2021-01-26 13:41:41 +08:00
|
|
|
|
2021-09-24 21:03:56 +08:00
|
|
|
return initError
|
2021-01-30 16:02:10 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
func (node *QueryNode) Start() error {
|
2021-02-08 14:30:54 +08: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 11:37:16 +08:00
|
|
|
// init services and manager
|
2021-05-28 10:26:30 +08:00
|
|
|
// TODO: pass node.streaming.replica to search service
|
2021-06-23 20:26:10 +08:00
|
|
|
node.queryService = newQueryService(node.queryNodeLoopCtx,
|
2021-06-15 12:41:40 +08:00
|
|
|
node.historical,
|
|
|
|
node.streaming,
|
2021-05-28 15:40:32 +08:00
|
|
|
node.msFactory)
|
2020-09-15 15:53:10 +08:00
|
|
|
|
2021-04-12 09:18:43 +08:00
|
|
|
// start task scheduler
|
|
|
|
go node.scheduler.Start()
|
|
|
|
|
2021-01-19 11:37:16 +08:00
|
|
|
// start services
|
2021-05-28 10:26:30 +08:00
|
|
|
go node.historical.start()
|
2021-09-23 18:29:55 +08:00
|
|
|
|
|
|
|
// start liveness check
|
|
|
|
go node.session.LivenessCheck(node.queryNodeLoopCtx, node.liveCh, func() {
|
|
|
|
node.Stop()
|
|
|
|
})
|
|
|
|
|
2021-03-12 14:22:09 +08:00
|
|
|
node.UpdateStateCode(internalpb.StateCode_Healthy)
|
2021-01-21 10:01:29 +08:00
|
|
|
return nil
|
2020-11-05 10:52:50 +08:00
|
|
|
}
|
2020-09-15 15:53:10 +08:00
|
|
|
|
2021-01-21 10:01:29 +08:00
|
|
|
func (node *QueryNode) Stop() error {
|
2021-03-12 14:22:09 +08:00
|
|
|
node.UpdateStateCode(internalpb.StateCode_Abnormal)
|
2020-12-08 14:41:04 +08:00
|
|
|
node.queryNodeLoopCancel()
|
|
|
|
|
2020-11-24 16:12:39 +08:00
|
|
|
// close services
|
2021-05-28 10:26:30 +08:00
|
|
|
if node.historical != nil {
|
|
|
|
node.historical.close()
|
|
|
|
}
|
|
|
|
if node.streaming != nil {
|
|
|
|
node.streaming.close()
|
2020-11-24 16:12:39 +08:00
|
|
|
}
|
2021-06-23 20:26:10 +08:00
|
|
|
if node.queryService != nil {
|
|
|
|
node.queryService.close()
|
2020-11-24 16:12:39 +08:00
|
|
|
}
|
2021-06-23 20:26:10 +08:00
|
|
|
if node.queryService != nil {
|
|
|
|
node.queryService.close()
|
2021-05-31 18:08:32 +08:00
|
|
|
}
|
2021-01-21 10:01:29 +08:00
|
|
|
return nil
|
2021-01-19 11:37:16 +08:00
|
|
|
}
|
|
|
|
|
2021-03-12 14:22:09 +08:00
|
|
|
func (node *QueryNode) UpdateStateCode(code internalpb.StateCode) {
|
2021-02-23 11:40:30 +08:00
|
|
|
node.stateCode.Store(code)
|
|
|
|
}
|
|
|
|
|
2021-06-21 17:28:03 +08:00
|
|
|
func (node *QueryNode) SetRootCoord(rc types.RootCoord) error {
|
|
|
|
if rc == nil {
|
2021-06-22 16:44:09 +08:00
|
|
|
return errors.New("null root coordinator interface")
|
2021-01-27 14:41:56 +08:00
|
|
|
}
|
2021-06-21 17:28:03 +08:00
|
|
|
node.rootCoord = rc
|
2021-01-27 14:41:56 +08:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2021-06-21 17:28:03 +08:00
|
|
|
func (node *QueryNode) SetIndexCoord(index types.IndexCoord) error {
|
2021-01-26 13:41:41 +08:00
|
|
|
if index == nil {
|
2021-06-22 16:44:09 +08:00
|
|
|
return errors.New("null index coordinator interface")
|
2021-01-26 13:41:41 +08:00
|
|
|
}
|
2021-06-21 17:28:03 +08:00
|
|
|
node.indexCoord = index
|
2021-01-26 13:41:41 +08:00
|
|
|
return nil
|
|
|
|
}
|