mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-12-02 03:48:37 +08:00
8b5754f7fe
See also #34574 Add jitter for segment seal proportion to avoid seal operation burst in short period of time. This PR also fix license header in paramtable pkg. Signed-off-by: Congqi Xia <congqi.xia@zilliz.com>
181 lines
7.5 KiB
Go
181 lines
7.5 KiB
Go
// 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
|
|
// 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.
|
|
|
|
package paramtable
|
|
|
|
import (
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
"github.com/milvus-io/milvus/pkg/util/typeutil"
|
|
)
|
|
|
|
func TestGrpcServerParams(t *testing.T) {
|
|
role := typeutil.DataNodeRole
|
|
base := &ComponentParam{}
|
|
base.Init(NewBaseTable(SkipRemote(true)))
|
|
var serverConfig GrpcServerConfig
|
|
serverConfig.Init(role, base.baseTable)
|
|
|
|
assert.Equal(t, serverConfig.Domain, role)
|
|
t.Logf("Domain = %s", serverConfig.Domain)
|
|
|
|
assert.NotEqual(t, serverConfig.IP, "")
|
|
t.Logf("IP = %s", serverConfig.IP)
|
|
|
|
assert.NotZero(t, serverConfig.Port.GetValue())
|
|
t.Logf("Port = %d", serverConfig.Port.GetAsInt())
|
|
|
|
t.Logf("Address = %s", serverConfig.GetAddress())
|
|
|
|
assert.NotZero(t, serverConfig.ServerMaxRecvSize.GetAsInt())
|
|
t.Logf("ServerMaxRecvSize = %d", serverConfig.ServerMaxRecvSize.GetAsInt())
|
|
|
|
base.Remove(role + ".grpc.serverMaxRecvSize")
|
|
assert.Equal(t, serverConfig.ServerMaxRecvSize.GetAsInt(), DefaultServerMaxRecvSize)
|
|
|
|
base.Remove("grpc.serverMaxRecvSize")
|
|
assert.Equal(t, serverConfig.ServerMaxRecvSize.GetAsInt(), DefaultServerMaxRecvSize)
|
|
|
|
base.Save("grpc.serverMaxRecvSize", "a")
|
|
assert.Equal(t, serverConfig.ServerMaxRecvSize.GetAsInt(), DefaultServerMaxRecvSize)
|
|
|
|
assert.NotZero(t, serverConfig.ServerMaxSendSize.GetAsInt())
|
|
t.Logf("ServerMaxSendSize = %d", serverConfig.ServerMaxSendSize.GetAsInt())
|
|
|
|
base.Remove(role + ".grpc.serverMaxSendSize")
|
|
assert.Equal(t, serverConfig.ServerMaxSendSize.GetAsInt(), DefaultServerMaxSendSize)
|
|
|
|
base.Remove("grpc.serverMaxSendSize")
|
|
assert.Equal(t, serverConfig.ServerMaxSendSize.GetAsInt(), DefaultServerMaxSendSize)
|
|
|
|
base.Save("grpc.serverMaxSendSize", "a")
|
|
assert.Equal(t, serverConfig.ServerMaxSendSize.GetAsInt(), DefaultServerMaxSendSize)
|
|
|
|
base.Save(serverConfig.GracefulStopTimeout.Key, "1")
|
|
assert.Equal(t, serverConfig.GracefulStopTimeout.GetAsInt(), 1)
|
|
}
|
|
|
|
func TestGrpcClientParams(t *testing.T) {
|
|
role := typeutil.DataNodeRole
|
|
base := ComponentParam{}
|
|
base.Init(NewBaseTable(SkipRemote(true)))
|
|
var clientConfig GrpcClientConfig
|
|
clientConfig.Init(role, base.baseTable)
|
|
|
|
assert.Equal(t, clientConfig.Domain, role)
|
|
t.Logf("Domain = %s", clientConfig.Domain)
|
|
|
|
assert.NotEqual(t, clientConfig.IP, "")
|
|
t.Logf("IP = %s", clientConfig.IP)
|
|
|
|
assert.NotZero(t, clientConfig.Port.GetAsInt())
|
|
t.Logf("Port = %d", clientConfig.Port.GetAsInt())
|
|
|
|
t.Logf("Address = %s", clientConfig.GetAddress())
|
|
|
|
assert.NotZero(t, clientConfig.ClientMaxRecvSize.GetAsInt())
|
|
t.Logf("ClientMaxRecvSize = %d", clientConfig.ClientMaxRecvSize.GetAsInt())
|
|
|
|
base.Remove("grpc.clientMaxRecvSize")
|
|
base.Save(role+".grpc.clientMaxRecvSize", "1000")
|
|
assert.Equal(t, clientConfig.ClientMaxRecvSize.GetAsInt(), 1000)
|
|
|
|
base.Remove(role + ".grpc.clientMaxRecvSize")
|
|
assert.Equal(t, clientConfig.ClientMaxRecvSize.GetAsInt(), DefaultClientMaxRecvSize)
|
|
|
|
assert.NotZero(t, clientConfig.ClientMaxSendSize.GetAsInt())
|
|
t.Logf("ClientMaxSendSize = %d", clientConfig.ClientMaxSendSize.GetAsInt())
|
|
|
|
base.Remove("grpc.clientMaxSendSize")
|
|
base.Save(role+".grpc.clientMaxSendSize", "2000")
|
|
assert.Equal(t, clientConfig.ClientMaxSendSize.GetAsInt(), 2000)
|
|
|
|
base.Remove(role + ".grpc.clientMaxSendSize")
|
|
assert.Equal(t, clientConfig.ClientMaxSendSize.GetAsInt(), DefaultClientMaxSendSize)
|
|
|
|
assert.Equal(t, clientConfig.DialTimeout.GetAsInt(), DefaultDialTimeout)
|
|
base.Save("grpc.client.dialTimeout", "aaa")
|
|
assert.Equal(t, clientConfig.DialTimeout.GetAsInt(), DefaultDialTimeout)
|
|
base.Save("grpc.client.dialTimeout", "100")
|
|
assert.Equal(t, clientConfig.DialTimeout.GetAsDuration(time.Millisecond), 100*time.Millisecond)
|
|
|
|
assert.Equal(t, clientConfig.KeepAliveTime.GetAsInt(), DefaultKeepAliveTime)
|
|
base.Save("grpc.client.keepAliveTime", "a")
|
|
assert.Equal(t, clientConfig.KeepAliveTime.GetAsInt(), DefaultKeepAliveTime)
|
|
base.Save("grpc.client.keepAliveTime", "200")
|
|
assert.Equal(t, clientConfig.KeepAliveTime.GetAsDuration(time.Millisecond), 200*time.Millisecond)
|
|
|
|
assert.Equal(t, clientConfig.KeepAliveTimeout.GetAsInt(), DefaultKeepAliveTimeout)
|
|
base.Save("grpc.client.keepAliveTimeout", "a")
|
|
assert.Equal(t, clientConfig.KeepAliveTimeout.GetAsInt(), DefaultKeepAliveTimeout)
|
|
base.Save("grpc.client.keepAliveTimeout", "500")
|
|
assert.Equal(t, clientConfig.KeepAliveTimeout.GetAsDuration(time.Millisecond), 500*time.Millisecond)
|
|
|
|
assert.Equal(t, clientConfig.MaxAttempts.GetAsInt(), DefaultMaxAttempts)
|
|
base.Save("grpc.client.maxMaxAttempts", "a")
|
|
assert.Equal(t, clientConfig.MaxAttempts.GetAsInt(), DefaultMaxAttempts)
|
|
base.Save("grpc.client.maxMaxAttempts", "4")
|
|
assert.Equal(t, clientConfig.MaxAttempts.GetAsInt(), 4)
|
|
|
|
assert.Equal(t, DefaultInitialBackoff, clientConfig.InitialBackoff.GetAsFloat())
|
|
base.Save(clientConfig.InitialBackoff.Key, "a")
|
|
assert.Equal(t, DefaultInitialBackoff, clientConfig.InitialBackoff.GetAsFloat())
|
|
base.Save(clientConfig.InitialBackoff.Key, "2.0")
|
|
assert.Equal(t, 2.0, clientConfig.InitialBackoff.GetAsFloat())
|
|
|
|
assert.Equal(t, clientConfig.MaxBackoff.GetAsFloat(), DefaultMaxBackoff)
|
|
base.Save(clientConfig.MaxBackoff.Key, "a")
|
|
assert.Equal(t, clientConfig.MaxBackoff.GetAsFloat(), DefaultMaxBackoff)
|
|
base.Save(clientConfig.MaxBackoff.Key, "50.0")
|
|
assert.Equal(t, 50.0, clientConfig.MaxBackoff.GetAsFloat())
|
|
|
|
assert.Equal(t, clientConfig.CompressionEnabled.GetAsBool(), DefaultCompressionEnabled)
|
|
base.Save("grpc.client.CompressionEnabled", "a")
|
|
assert.Equal(t, clientConfig.CompressionEnabled.GetAsBool(), DefaultCompressionEnabled)
|
|
base.Save(clientConfig.CompressionEnabled.Key, "true")
|
|
assert.Equal(t, true, clientConfig.CompressionEnabled.GetAsBool())
|
|
|
|
assert.Equal(t, clientConfig.MinResetInterval.GetValue(), "1000")
|
|
base.Save("grpc.client.minResetInterval", "abc")
|
|
assert.Equal(t, clientConfig.MinResetInterval.GetValue(), "1000")
|
|
base.Save("grpc.client.minResetInterval", "5000")
|
|
assert.Equal(t, clientConfig.MinResetInterval.GetValue(), "5000")
|
|
|
|
assert.Equal(t, clientConfig.MinSessionCheckInterval.GetValue(), "200")
|
|
base.Save("grpc.client.minSessionCheckInterval", "abc")
|
|
assert.Equal(t, clientConfig.MinSessionCheckInterval.GetValue(), "200")
|
|
base.Save("grpc.client.minSessionCheckInterval", "500")
|
|
assert.Equal(t, clientConfig.MinSessionCheckInterval.GetValue(), "500")
|
|
|
|
assert.Equal(t, clientConfig.MaxCancelError.GetValue(), "32")
|
|
base.Save("grpc.client.maxCancelError", "abc")
|
|
assert.Equal(t, clientConfig.MaxCancelError.GetValue(), "32")
|
|
base.Save("grpc.client.maxCancelError", "64")
|
|
assert.Equal(t, clientConfig.MaxCancelError.GetValue(), "64")
|
|
|
|
base.Save("common.security.tlsMode", "1")
|
|
base.Save("tls.serverPemPath", "/pem")
|
|
base.Save("tls.serverKeyPath", "/key")
|
|
base.Save("tls.caPemPath", "/ca")
|
|
assert.Equal(t, clientConfig.TLSMode.GetAsInt(), 1)
|
|
assert.Equal(t, clientConfig.ServerPemPath.GetValue(), "/pem")
|
|
assert.Equal(t, clientConfig.ServerKeyPath.GetValue(), "/key")
|
|
assert.Equal(t, clientConfig.CaPemPath.GetValue(), "/ca")
|
|
}
|