2022-02-08 20:57:47 +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.
|
|
|
|
|
|
|
|
package paramtable
|
|
|
|
|
|
|
|
import (
|
2022-06-22 22:22:13 +08:00
|
|
|
"fmt"
|
2022-02-08 20:57:47 +08:00
|
|
|
"strconv"
|
|
|
|
|
|
|
|
"go.uber.org/zap"
|
2023-04-06 19:14:32 +08:00
|
|
|
|
|
|
|
"github.com/milvus-io/milvus/pkg/log"
|
|
|
|
"github.com/milvus-io/milvus/pkg/util/funcutil"
|
2022-02-08 20:57:47 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
// DefaultServerMaxSendSize defines the maximum size of data per grpc request can send by server side.
|
2022-12-07 10:07:18 +08:00
|
|
|
DefaultServerMaxSendSize = 512 * 1024 * 1024
|
2022-02-08 20:57:47 +08:00
|
|
|
|
|
|
|
// DefaultServerMaxRecvSize defines the maximum size of data per grpc request can receive by server side.
|
2022-12-07 10:07:18 +08:00
|
|
|
DefaultServerMaxRecvSize = 512 * 1024 * 1024
|
2022-02-08 20:57:47 +08:00
|
|
|
|
|
|
|
// DefaultClientMaxSendSize defines the maximum size of data per grpc request can send by client side.
|
2023-01-13 10:55:41 +08:00
|
|
|
DefaultClientMaxSendSize = 256 * 1024 * 1024
|
2022-02-08 20:57:47 +08:00
|
|
|
|
|
|
|
// DefaultClientMaxRecvSize defines the maximum size of data per grpc request can receive by client side.
|
2023-01-13 10:55:41 +08:00
|
|
|
DefaultClientMaxRecvSize = 256 * 1024 * 1024
|
2022-05-05 10:35:50 +08:00
|
|
|
|
|
|
|
// DefaultLogLevel defines the log level of grpc
|
|
|
|
DefaultLogLevel = "WARNING"
|
|
|
|
|
|
|
|
// Grpc Timeout related configs
|
2023-05-29 10:03:28 +08:00
|
|
|
DefaultDialTimeout = 200
|
2022-12-16 15:59:23 +08:00
|
|
|
DefaultKeepAliveTime = 10000
|
|
|
|
DefaultKeepAliveTimeout = 20000
|
2022-05-10 20:05:53 +08:00
|
|
|
|
2022-06-22 22:22:13 +08:00
|
|
|
// Grpc retry policy
|
2023-09-06 17:43:14 +08:00
|
|
|
DefaultMaxAttempts = 10
|
|
|
|
DefaultInitialBackoff float64 = 0.2
|
|
|
|
DefaultMaxBackoff float64 = 10
|
2023-10-24 22:14:14 +08:00
|
|
|
DefaultCompressionEnabled bool = false
|
2023-01-13 10:55:41 +08:00
|
|
|
|
2022-05-10 20:05:53 +08:00
|
|
|
ProxyInternalPort = 19529
|
|
|
|
ProxyExternalPort = 19530
|
2022-02-08 20:57:47 +08:00
|
|
|
)
|
|
|
|
|
2023-02-26 11:31:49 +08:00
|
|
|
// /////////////////////////////////////////////////////////////////////////////
|
2022-02-08 20:57:47 +08:00
|
|
|
// --- grpc ---
|
|
|
|
type grpcConfig struct {
|
2022-12-16 15:59:23 +08:00
|
|
|
Domain string `refreshable:"false"`
|
|
|
|
IP string `refreshable:"false"`
|
|
|
|
TLSMode ParamItem `refreshable:"false"`
|
|
|
|
Port ParamItem `refreshable:"false"`
|
|
|
|
InternalPort ParamItem `refreshable:"false"`
|
|
|
|
ServerPemPath ParamItem `refreshable:"false"`
|
|
|
|
ServerKeyPath ParamItem `refreshable:"false"`
|
|
|
|
CaPemPath ParamItem `refreshable:"false"`
|
2022-02-08 20:57:47 +08:00
|
|
|
}
|
|
|
|
|
2022-12-16 15:59:23 +08:00
|
|
|
func (p *grpcConfig) init(domain string, base *BaseTable) {
|
2022-02-08 20:57:47 +08:00
|
|
|
p.Domain = domain
|
2023-09-20 11:49:25 +08:00
|
|
|
ipItem := ParamItem{
|
|
|
|
Key: p.Domain + ".ip",
|
|
|
|
Version: "2.3.3",
|
|
|
|
DefaultValue: "",
|
|
|
|
Export: true,
|
|
|
|
}
|
|
|
|
ipItem.Init(base.mgr)
|
|
|
|
p.IP = funcutil.GetIP(ipItem.GetValue())
|
2022-02-08 20:57:47 +08:00
|
|
|
|
2022-12-16 15:59:23 +08:00
|
|
|
p.Port = ParamItem{
|
|
|
|
Key: p.Domain + ".port",
|
|
|
|
Version: "2.0.0",
|
|
|
|
DefaultValue: strconv.FormatInt(ProxyExternalPort, 10),
|
2023-02-23 11:37:46 +08:00
|
|
|
Export: true,
|
2022-12-16 15:59:23 +08:00
|
|
|
}
|
|
|
|
p.Port.Init(base.mgr)
|
2022-02-08 20:57:47 +08:00
|
|
|
|
2022-12-16 15:59:23 +08:00
|
|
|
p.InternalPort = ParamItem{
|
|
|
|
Key: p.Domain + ".internalPort",
|
|
|
|
Version: "2.0.0",
|
|
|
|
DefaultValue: strconv.FormatInt(ProxyInternalPort, 10),
|
|
|
|
}
|
|
|
|
p.InternalPort.Init(base.mgr)
|
2022-02-08 20:57:47 +08:00
|
|
|
|
2022-12-16 15:59:23 +08:00
|
|
|
p.TLSMode = ParamItem{
|
|
|
|
Key: "common.security.tlsMode",
|
|
|
|
Version: "2.0.0",
|
|
|
|
DefaultValue: "0",
|
2023-02-23 11:37:46 +08:00
|
|
|
Export: true,
|
2022-12-16 15:59:23 +08:00
|
|
|
}
|
|
|
|
p.TLSMode.Init(base.mgr)
|
2022-02-08 20:57:47 +08:00
|
|
|
|
2022-12-16 15:59:23 +08:00
|
|
|
p.ServerPemPath = ParamItem{
|
|
|
|
Key: "tls.serverPemPath",
|
|
|
|
Version: "2.0.0",
|
2023-02-23 11:37:46 +08:00
|
|
|
Export: true,
|
2022-12-16 15:59:23 +08:00
|
|
|
}
|
|
|
|
p.ServerPemPath.Init(base.mgr)
|
2022-02-08 20:57:47 +08:00
|
|
|
|
2022-12-16 15:59:23 +08:00
|
|
|
p.ServerKeyPath = ParamItem{
|
|
|
|
Key: "tls.serverKeyPath",
|
|
|
|
Version: "2.0.0",
|
2023-02-23 11:37:46 +08:00
|
|
|
Export: true,
|
2022-12-16 15:59:23 +08:00
|
|
|
}
|
|
|
|
p.ServerKeyPath.Init(base.mgr)
|
2022-05-10 20:05:53 +08:00
|
|
|
|
2022-12-16 15:59:23 +08:00
|
|
|
p.CaPemPath = ParamItem{
|
|
|
|
Key: "tls.caPemPath",
|
|
|
|
Version: "2.0.0",
|
2023-02-23 11:37:46 +08:00
|
|
|
Export: true,
|
2022-12-16 15:59:23 +08:00
|
|
|
}
|
|
|
|
p.CaPemPath.Init(base.mgr)
|
2022-02-08 20:57:47 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// GetAddress return grpc address
|
|
|
|
func (p *grpcConfig) GetAddress() string {
|
2022-12-16 15:59:23 +08:00
|
|
|
return p.IP + ":" + p.Port.GetValue()
|
2022-02-08 20:57:47 +08:00
|
|
|
}
|
|
|
|
|
2022-05-10 20:05:53 +08:00
|
|
|
func (p *grpcConfig) GetInternalAddress() string {
|
2022-12-16 15:59:23 +08:00
|
|
|
return p.IP + ":" + p.InternalPort.GetValue()
|
2022-05-10 20:05:53 +08:00
|
|
|
}
|
|
|
|
|
2022-02-08 20:57:47 +08:00
|
|
|
// GrpcServerConfig is configuration for grpc server.
|
|
|
|
type GrpcServerConfig struct {
|
|
|
|
grpcConfig
|
|
|
|
|
2022-12-16 15:59:23 +08:00
|
|
|
ServerMaxSendSize ParamItem `refreshable:"false"`
|
|
|
|
ServerMaxRecvSize ParamItem `refreshable:"false"`
|
2023-09-26 10:15:25 +08:00
|
|
|
|
|
|
|
GracefulStopTimeout ParamItem `refreshable:"true"`
|
2022-02-08 20:57:47 +08:00
|
|
|
}
|
|
|
|
|
2022-12-16 15:59:23 +08:00
|
|
|
func (p *GrpcServerConfig) Init(domain string, base *BaseTable) {
|
|
|
|
p.grpcConfig.init(domain, base)
|
|
|
|
|
|
|
|
maxSendSize := strconv.FormatInt(DefaultServerMaxSendSize, 10)
|
|
|
|
p.ServerMaxSendSize = ParamItem{
|
|
|
|
Key: p.Domain + ".grpc.serverMaxSendSize",
|
|
|
|
DefaultValue: maxSendSize,
|
|
|
|
FallbackKeys: []string{"grpc.serverMaxSendSize"},
|
|
|
|
Formatter: func(v string) string {
|
|
|
|
if v == "" {
|
|
|
|
return maxSendSize
|
|
|
|
}
|
|
|
|
_, err := strconv.Atoi(v)
|
|
|
|
if err != nil {
|
|
|
|
log.Warn("Failed to parse grpc.serverMaxSendSize, set to default",
|
|
|
|
zap.String("role", p.Domain), zap.String("grpc.serverMaxSendSize", v),
|
|
|
|
zap.Error(err))
|
|
|
|
return maxSendSize
|
|
|
|
}
|
|
|
|
return v
|
|
|
|
},
|
2023-02-23 11:37:46 +08:00
|
|
|
Export: true,
|
2022-02-08 20:57:47 +08:00
|
|
|
}
|
2022-12-16 15:59:23 +08:00
|
|
|
p.ServerMaxSendSize.Init(base.mgr)
|
|
|
|
|
|
|
|
maxRecvSize := strconv.FormatInt(DefaultServerMaxRecvSize, 10)
|
|
|
|
p.ServerMaxRecvSize = ParamItem{
|
|
|
|
Key: p.Domain + ".grpc.serverMaxRecvSize",
|
|
|
|
DefaultValue: maxRecvSize,
|
|
|
|
FallbackKeys: []string{"grpc.serverMaxRecvSize"},
|
|
|
|
Formatter: func(v string) string {
|
|
|
|
if v == "" {
|
|
|
|
return maxRecvSize
|
|
|
|
}
|
|
|
|
_, err := strconv.Atoi(v)
|
|
|
|
if err != nil {
|
|
|
|
log.Warn("Failed to parse grpc.serverMaxRecvSize, set to default",
|
|
|
|
zap.String("role", p.Domain), zap.String("grpc.serverMaxRecvSize", v),
|
|
|
|
zap.Error(err))
|
|
|
|
return maxRecvSize
|
|
|
|
}
|
|
|
|
return v
|
|
|
|
},
|
2023-02-23 11:37:46 +08:00
|
|
|
Export: true,
|
2022-02-08 20:57:47 +08:00
|
|
|
}
|
2022-12-16 15:59:23 +08:00
|
|
|
p.ServerMaxRecvSize.Init(base.mgr)
|
2023-09-26 10:15:25 +08:00
|
|
|
|
|
|
|
p.GracefulStopTimeout = ParamItem{
|
|
|
|
Key: "grpc.gracefulStopTimeout",
|
|
|
|
Version: "2.3.1",
|
|
|
|
DefaultValue: "10",
|
|
|
|
Doc: "second, time to wait graceful stop finish",
|
|
|
|
Export: true,
|
|
|
|
}
|
|
|
|
p.GracefulStopTimeout.Init(base.mgr)
|
2022-02-08 20:57:47 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// GrpcClientConfig is configuration for grpc client.
|
|
|
|
type GrpcClientConfig struct {
|
|
|
|
grpcConfig
|
|
|
|
|
2023-01-13 10:55:41 +08:00
|
|
|
CompressionEnabled ParamItem `refreshable:"false"`
|
|
|
|
|
2022-12-16 15:59:23 +08:00
|
|
|
ClientMaxSendSize ParamItem `refreshable:"false"`
|
|
|
|
ClientMaxRecvSize ParamItem `refreshable:"false"`
|
2022-02-08 20:57:47 +08:00
|
|
|
|
2022-12-16 15:59:23 +08:00
|
|
|
DialTimeout ParamItem `refreshable:"false"`
|
|
|
|
KeepAliveTime ParamItem `refreshable:"false"`
|
|
|
|
KeepAliveTimeout ParamItem `refreshable:"false"`
|
2022-02-08 20:57:47 +08:00
|
|
|
|
2023-09-13 15:01:18 +08:00
|
|
|
MaxAttempts ParamItem `refreshable:"false"`
|
|
|
|
InitialBackoff ParamItem `refreshable:"false"`
|
|
|
|
MaxBackoff ParamItem `refreshable:"false"`
|
|
|
|
MinResetInterval ParamItem `refreshable:"false"`
|
|
|
|
MaxCancelError ParamItem `refreshable:"false"`
|
|
|
|
MinSessionCheckInterval ParamItem `refreshable:"false"`
|
2022-02-08 20:57:47 +08:00
|
|
|
}
|
|
|
|
|
2022-12-16 15:59:23 +08:00
|
|
|
func (p *GrpcClientConfig) Init(domain string, base *BaseTable) {
|
|
|
|
p.grpcConfig.init(domain, base)
|
|
|
|
|
|
|
|
maxSendSize := strconv.FormatInt(DefaultClientMaxSendSize, 10)
|
|
|
|
p.ClientMaxSendSize = ParamItem{
|
|
|
|
Key: p.Domain + ".grpc.clientMaxSendSize",
|
|
|
|
DefaultValue: maxSendSize,
|
|
|
|
FallbackKeys: []string{"grpc.clientMaxSendSize"},
|
|
|
|
Formatter: func(v string) string {
|
|
|
|
if v == "" {
|
|
|
|
return maxSendSize
|
2022-06-22 22:22:13 +08:00
|
|
|
}
|
2022-12-16 15:59:23 +08:00
|
|
|
_, err := strconv.Atoi(v)
|
|
|
|
if err != nil {
|
|
|
|
log.Warn("Failed to parse grpc.clientMaxSendSize, set to default",
|
|
|
|
zap.String("role", p.Domain), zap.String("grpc.clientMaxSendSize", v),
|
|
|
|
zap.Error(err))
|
|
|
|
return maxSendSize
|
2022-06-22 22:22:13 +08:00
|
|
|
}
|
2022-12-16 15:59:23 +08:00
|
|
|
return v
|
2022-06-22 22:22:13 +08:00
|
|
|
},
|
2023-02-23 11:37:46 +08:00
|
|
|
Export: true,
|
2022-12-16 15:59:23 +08:00
|
|
|
}
|
|
|
|
p.ClientMaxSendSize.Init(base.mgr)
|
|
|
|
|
|
|
|
maxRecvSize := strconv.FormatInt(DefaultClientMaxRecvSize, 10)
|
|
|
|
p.ClientMaxRecvSize = ParamItem{
|
|
|
|
Key: p.Domain + ".grpc.clientMaxRecvSize",
|
|
|
|
DefaultValue: maxRecvSize,
|
|
|
|
FallbackKeys: []string{"grpc.clientMaxRecvSize"},
|
|
|
|
Formatter: func(v string) string {
|
|
|
|
if v == "" {
|
|
|
|
return maxRecvSize
|
2022-06-22 22:22:13 +08:00
|
|
|
}
|
2022-12-16 15:59:23 +08:00
|
|
|
_, err := strconv.Atoi(v)
|
|
|
|
if err != nil {
|
|
|
|
log.Warn("Failed to parse grpc.clientMaxRecvSize, set to default",
|
|
|
|
zap.String("role", p.Domain), zap.String("grpc.clientMaxRecvSize", v),
|
|
|
|
zap.Error(err))
|
|
|
|
return maxRecvSize
|
2022-06-22 22:22:13 +08:00
|
|
|
}
|
2022-12-16 15:59:23 +08:00
|
|
|
return v
|
2022-06-22 22:22:13 +08:00
|
|
|
},
|
2023-02-23 11:37:46 +08:00
|
|
|
Export: true,
|
2022-12-16 15:59:23 +08:00
|
|
|
}
|
|
|
|
p.ClientMaxRecvSize.Init(base.mgr)
|
|
|
|
|
|
|
|
dialTimeout := strconv.FormatInt(DefaultDialTimeout, 10)
|
|
|
|
p.DialTimeout = ParamItem{
|
|
|
|
Key: "grpc.client.dialTimeout",
|
|
|
|
Version: "2.0.0",
|
|
|
|
Formatter: func(v string) string {
|
|
|
|
if v == "" {
|
|
|
|
return dialTimeout
|
2022-06-22 22:22:13 +08:00
|
|
|
}
|
2022-12-16 15:59:23 +08:00
|
|
|
_, err := strconv.Atoi(v)
|
|
|
|
if err != nil {
|
|
|
|
log.Warn("Failed to convert int when parsing grpc.client.dialTimeout, set to default",
|
|
|
|
zap.String("role", p.Domain),
|
|
|
|
zap.String("grpc.client.dialTimeout", v))
|
|
|
|
return dialTimeout
|
2022-06-22 22:22:13 +08:00
|
|
|
}
|
2022-12-16 15:59:23 +08:00
|
|
|
return v
|
2022-06-22 22:22:13 +08:00
|
|
|
},
|
2023-02-23 11:37:46 +08:00
|
|
|
Export: true,
|
2022-12-16 15:59:23 +08:00
|
|
|
}
|
|
|
|
p.DialTimeout.Init(base.mgr)
|
|
|
|
|
|
|
|
keepAliveTimeout := strconv.FormatInt(DefaultKeepAliveTimeout, 10)
|
|
|
|
p.KeepAliveTimeout = ParamItem{
|
|
|
|
Key: "grpc.client.keepAliveTimeout",
|
|
|
|
Version: "2.0.0",
|
|
|
|
Formatter: func(v string) string {
|
|
|
|
if v == "" {
|
|
|
|
return keepAliveTimeout
|
2022-06-22 22:22:13 +08:00
|
|
|
}
|
2022-12-16 15:59:23 +08:00
|
|
|
_, err := strconv.Atoi(v)
|
|
|
|
if err != nil {
|
|
|
|
log.Warn("Failed to convert int when parsing grpc.client.keepAliveTimeout, set to default",
|
|
|
|
zap.String("role", p.Domain),
|
|
|
|
zap.String("grpc.client.keepAliveTimeout", v))
|
|
|
|
return keepAliveTimeout
|
2022-06-22 22:22:13 +08:00
|
|
|
}
|
2022-12-16 15:59:23 +08:00
|
|
|
return v
|
2022-06-22 22:22:13 +08:00
|
|
|
},
|
2023-02-23 11:37:46 +08:00
|
|
|
Export: true,
|
2022-12-16 15:59:23 +08:00
|
|
|
}
|
|
|
|
p.KeepAliveTimeout.Init(base.mgr)
|
|
|
|
|
|
|
|
keepAliveTime := strconv.FormatInt(DefaultKeepAliveTime, 10)
|
|
|
|
p.KeepAliveTime = ParamItem{
|
|
|
|
Key: "grpc.client.keepAliveTime",
|
|
|
|
Version: "2.0.0",
|
|
|
|
Formatter: func(v string) string {
|
|
|
|
if v == "" {
|
|
|
|
return keepAliveTime
|
2022-06-22 22:22:13 +08:00
|
|
|
}
|
2022-12-16 15:59:23 +08:00
|
|
|
_, err := strconv.Atoi(v)
|
|
|
|
if err != nil {
|
|
|
|
log.Warn("Failed to convert int when parsing grpc.client.keepAliveTime, set to default",
|
|
|
|
zap.String("role", p.Domain),
|
|
|
|
zap.String("grpc.client.keepAliveTime", v))
|
|
|
|
return keepAliveTime
|
2022-06-22 22:22:13 +08:00
|
|
|
}
|
2022-12-16 15:59:23 +08:00
|
|
|
return v
|
2022-06-22 22:22:13 +08:00
|
|
|
},
|
2023-02-23 11:37:46 +08:00
|
|
|
Export: true,
|
2022-12-16 15:59:23 +08:00
|
|
|
}
|
|
|
|
p.KeepAliveTime.Init(base.mgr)
|
|
|
|
|
|
|
|
maxAttempts := strconv.FormatInt(DefaultMaxAttempts, 10)
|
|
|
|
p.MaxAttempts = ParamItem{
|
|
|
|
Key: "grpc.client.maxMaxAttempts",
|
|
|
|
Version: "2.0.0",
|
|
|
|
Formatter: func(v string) string {
|
|
|
|
if v == "" {
|
|
|
|
return maxAttempts
|
2022-06-22 22:22:13 +08:00
|
|
|
}
|
2023-09-06 17:43:14 +08:00
|
|
|
_, err := strconv.Atoi(v)
|
2022-12-16 15:59:23 +08:00
|
|
|
if err != nil {
|
|
|
|
log.Warn("Failed to convert int when parsing grpc.client.maxMaxAttempts, set to default",
|
|
|
|
zap.String("role", p.Domain),
|
|
|
|
zap.String("grpc.client.maxMaxAttempts", v))
|
|
|
|
return maxAttempts
|
2022-06-22 22:22:13 +08:00
|
|
|
}
|
2022-12-16 15:59:23 +08:00
|
|
|
return v
|
2022-06-22 22:22:13 +08:00
|
|
|
},
|
2023-02-23 11:37:46 +08:00
|
|
|
Export: true,
|
2022-12-16 15:59:23 +08:00
|
|
|
}
|
|
|
|
p.MaxAttempts.Init(base.mgr)
|
|
|
|
|
|
|
|
initialBackoff := fmt.Sprintf("%f", DefaultInitialBackoff)
|
|
|
|
p.InitialBackoff = ParamItem{
|
|
|
|
Key: "grpc.client.initialBackoff",
|
|
|
|
Version: "2.0.0",
|
|
|
|
Formatter: func(v string) string {
|
|
|
|
if v == "" {
|
|
|
|
return initialBackoff
|
2022-06-22 22:22:13 +08:00
|
|
|
}
|
2023-09-06 17:43:14 +08:00
|
|
|
_, err := strconv.ParseFloat(v, 64)
|
2022-12-16 15:59:23 +08:00
|
|
|
if err != nil {
|
|
|
|
log.Warn("Failed to convert int when parsing grpc.client.initialBackoff, set to default",
|
|
|
|
zap.String("role", p.Domain),
|
|
|
|
zap.String("grpc.client.initialBackoff", v))
|
|
|
|
return initialBackoff
|
2022-06-22 22:22:13 +08:00
|
|
|
}
|
2022-12-16 15:59:23 +08:00
|
|
|
return v
|
2022-06-22 22:22:13 +08:00
|
|
|
},
|
2023-02-23 11:37:46 +08:00
|
|
|
Export: true,
|
2022-12-16 15:59:23 +08:00
|
|
|
}
|
|
|
|
p.InitialBackoff.Init(base.mgr)
|
|
|
|
|
|
|
|
maxBackoff := fmt.Sprintf("%f", DefaultMaxBackoff)
|
|
|
|
p.MaxBackoff = ParamItem{
|
|
|
|
Key: "grpc.client.maxBackoff",
|
|
|
|
Version: "2.0.0",
|
|
|
|
Formatter: func(v string) string {
|
|
|
|
if v == "" {
|
|
|
|
return maxBackoff
|
2022-06-22 22:22:13 +08:00
|
|
|
}
|
2022-12-16 15:59:23 +08:00
|
|
|
_, err := strconv.ParseFloat(v, 64)
|
|
|
|
if err != nil {
|
|
|
|
log.Warn("Failed to convert int when parsing grpc.client.maxBackoff, set to default",
|
|
|
|
zap.String("role", p.Domain),
|
|
|
|
zap.String("grpc.client.maxBackoff", v))
|
|
|
|
return maxBackoff
|
2022-06-22 22:22:13 +08:00
|
|
|
}
|
2022-12-16 15:59:23 +08:00
|
|
|
return v
|
2022-06-22 22:22:13 +08:00
|
|
|
},
|
2023-02-23 11:37:46 +08:00
|
|
|
Export: true,
|
2022-12-16 15:59:23 +08:00
|
|
|
}
|
|
|
|
p.MaxBackoff.Init(base.mgr)
|
|
|
|
|
2023-01-13 10:55:41 +08:00
|
|
|
compressionEnabled := fmt.Sprintf("%t", DefaultCompressionEnabled)
|
|
|
|
p.CompressionEnabled = ParamItem{
|
|
|
|
Key: "grpc.client.compressionEnabled",
|
|
|
|
Version: "2.0.0",
|
|
|
|
Formatter: func(v string) string {
|
|
|
|
if v == "" {
|
|
|
|
return compressionEnabled
|
|
|
|
}
|
|
|
|
_, err := strconv.ParseBool(v)
|
|
|
|
if err != nil {
|
|
|
|
log.Warn("Failed to convert int when parsing grpc.client.compressionEnabled, set to default",
|
|
|
|
zap.String("role", p.Domain),
|
|
|
|
zap.String("grpc.client.compressionEnabled", v))
|
2023-09-06 17:43:14 +08:00
|
|
|
return compressionEnabled
|
2023-01-13 10:55:41 +08:00
|
|
|
}
|
|
|
|
return v
|
|
|
|
},
|
2023-02-23 11:37:46 +08:00
|
|
|
Export: true,
|
2023-01-13 10:55:41 +08:00
|
|
|
}
|
|
|
|
p.CompressionEnabled.Init(base.mgr)
|
2023-09-13 15:01:18 +08:00
|
|
|
|
|
|
|
p.MinResetInterval = ParamItem{
|
|
|
|
Key: "grpc.client.minResetInterval",
|
|
|
|
DefaultValue: "1000",
|
|
|
|
Formatter: func(v string) string {
|
|
|
|
if v == "" {
|
|
|
|
return "1000"
|
|
|
|
}
|
|
|
|
_, err := strconv.Atoi(v)
|
|
|
|
if err != nil {
|
|
|
|
log.Warn("Failed to parse grpc.client.minResetInterval, set to default",
|
|
|
|
zap.String("role", p.Domain), zap.String("grpc.client.minResetInterval", v),
|
|
|
|
zap.Error(err))
|
|
|
|
return "1000"
|
|
|
|
}
|
|
|
|
return v
|
|
|
|
},
|
|
|
|
Export: true,
|
|
|
|
}
|
|
|
|
p.MinResetInterval.Init(base.mgr)
|
|
|
|
|
|
|
|
p.MinSessionCheckInterval = ParamItem{
|
|
|
|
Key: "grpc.client.minSessionCheckInterval",
|
|
|
|
DefaultValue: "200",
|
|
|
|
Formatter: func(v string) string {
|
|
|
|
if v == "" {
|
|
|
|
return "200"
|
|
|
|
}
|
|
|
|
_, err := strconv.Atoi(v)
|
|
|
|
if err != nil {
|
|
|
|
log.Warn("Failed to parse grpc.client.minSessionCheckInterval, set to default",
|
|
|
|
zap.String("role", p.Domain), zap.String("grpc.client.minSessionCheckInterval", v),
|
|
|
|
zap.Error(err))
|
|
|
|
return "200"
|
|
|
|
}
|
|
|
|
return v
|
|
|
|
},
|
|
|
|
Export: true,
|
|
|
|
}
|
|
|
|
p.MinSessionCheckInterval.Init(base.mgr)
|
|
|
|
|
|
|
|
p.MaxCancelError = ParamItem{
|
|
|
|
Key: "grpc.client.maxCancelError",
|
|
|
|
DefaultValue: "32",
|
|
|
|
Formatter: func(v string) string {
|
|
|
|
if v == "" {
|
|
|
|
return "32"
|
|
|
|
}
|
|
|
|
_, err := strconv.Atoi(v)
|
|
|
|
if err != nil {
|
|
|
|
log.Warn("Failed to parse grpc.client.maxCancelError, set to default",
|
|
|
|
zap.String("role", p.Domain), zap.String("grpc.client.maxCancelError", v),
|
|
|
|
zap.Error(err))
|
|
|
|
return "32"
|
|
|
|
}
|
|
|
|
return v
|
|
|
|
},
|
|
|
|
Export: true,
|
|
|
|
}
|
|
|
|
p.MaxCancelError.Init(base.mgr)
|
2022-05-05 10:35:50 +08:00
|
|
|
}
|