2021-12-06 21:08:17 +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-08-17 10:06:11 +08:00
|
|
|
// with the License. You may obtain a copy of the License at
|
|
|
|
//
|
2021-12-06 21:08:17 +08:00
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
2021-08-17 10:06:11 +08:00
|
|
|
//
|
2021-12-06 21:08:17 +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-08-17 10:06:11 +08:00
|
|
|
|
|
|
|
package querynode
|
|
|
|
|
|
|
|
import (
|
2021-09-10 17:11:09 +08:00
|
|
|
"context"
|
2021-08-17 10:06:11 +08:00
|
|
|
"testing"
|
|
|
|
|
2021-09-10 17:11:09 +08:00
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
|
2022-10-16 20:49:27 +08:00
|
|
|
"github.com/milvus-io/milvus-proto/go-api/commonpb"
|
|
|
|
"github.com/milvus-io/milvus-proto/go-api/milvuspb"
|
2022-08-03 01:12:33 +08:00
|
|
|
"github.com/milvus-io/milvus/internal/proto/internalpb"
|
2021-12-29 14:35:21 +08:00
|
|
|
"github.com/milvus-io/milvus/internal/util/etcd"
|
2022-09-16 09:56:47 +08:00
|
|
|
"github.com/milvus-io/milvus/internal/util/metricsinfo"
|
2021-09-10 17:11:09 +08:00
|
|
|
"github.com/milvus-io/milvus/internal/util/sessionutil"
|
2021-08-17 10:06:11 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestGetSystemInfoMetrics(t *testing.T) {
|
2021-09-10 17:11:09 +08:00
|
|
|
ctx, cancel := context.WithCancel(context.Background())
|
|
|
|
defer cancel()
|
|
|
|
|
|
|
|
node, err := genSimpleQueryNode(ctx)
|
|
|
|
assert.NoError(t, err)
|
|
|
|
|
2022-02-07 10:09:45 +08:00
|
|
|
etcdCli, err := etcd.GetEtcdClient(&Params.EtcdCfg)
|
2021-12-29 14:35:21 +08:00
|
|
|
assert.NoError(t, err)
|
|
|
|
defer etcdCli.Close()
|
2022-02-07 10:09:45 +08:00
|
|
|
node.session = sessionutil.NewSession(node.queryNodeLoopCtx, Params.EtcdCfg.MetaRootPath, etcdCli)
|
2021-09-10 17:11:09 +08:00
|
|
|
|
|
|
|
req := &milvuspb.GetMetricsRequest{
|
2022-10-08 20:26:57 +08:00
|
|
|
Base: genCommonMsgBase(commonpb.MsgType_WatchQueryChannels, node.session.ServerID),
|
2021-09-10 17:11:09 +08:00
|
|
|
}
|
|
|
|
resp, err := getSystemInfoMetrics(ctx, req, node)
|
|
|
|
assert.NoError(t, err)
|
2022-09-16 09:56:47 +08:00
|
|
|
assert.Equal(t, commonpb.ErrorCode_Success, resp.GetStatus().GetErrorCode())
|
|
|
|
|
|
|
|
// test getQuotaMetricsError
|
|
|
|
rateCol.Deregister(metricsinfo.NQPerSecond)
|
|
|
|
resp, err = getSystemInfoMetrics(ctx, req, node)
|
|
|
|
assert.NoError(t, err)
|
|
|
|
assert.NotEqual(t, commonpb.ErrorCode_Success, resp.GetStatus().GetErrorCode())
|
|
|
|
rateCol.Register(metricsinfo.NQPerSecond)
|
2021-08-17 10:06:11 +08:00
|
|
|
}
|
2022-08-03 01:12:33 +08:00
|
|
|
|
|
|
|
func TestGetComponentConfigurationsFailed(t *testing.T) {
|
|
|
|
ctx, cancel := context.WithCancel(context.Background())
|
|
|
|
defer cancel()
|
|
|
|
|
|
|
|
node, err := genSimpleQueryNode(ctx)
|
|
|
|
assert.NoError(t, err)
|
|
|
|
|
|
|
|
etcdCli, err := etcd.GetEtcdClient(&Params.EtcdCfg)
|
|
|
|
assert.NoError(t, err)
|
|
|
|
defer etcdCli.Close()
|
|
|
|
node.session = sessionutil.NewSession(node.queryNodeLoopCtx, Params.EtcdCfg.MetaRootPath, etcdCli)
|
|
|
|
|
|
|
|
req := &internalpb.ShowConfigurationsRequest{
|
2022-10-08 20:26:57 +08:00
|
|
|
Base: genCommonMsgBase(commonpb.MsgType_WatchQueryChannels, node.session.ServerID),
|
2022-08-03 01:12:33 +08:00
|
|
|
Pattern: "Cache",
|
|
|
|
}
|
|
|
|
|
|
|
|
resq := getComponentConfigurations(ctx, req)
|
|
|
|
assert.Equal(t, resq.Status.ErrorCode, commonpb.ErrorCode_Success)
|
|
|
|
}
|