mirror of
https://github.com/temporalio/temporal.git
synced 2026-08-30 18:41:49 -07:00
## What changed? Create dynamic config for max service error message length ## Why? Replacing constant max length with dynamic config for added flexibility. ## How did you test it? - [x] built - [ ] run locally and tested manually - [x] covered by existing tests - [ ] added new unit test(s) - [ ] added new functional test(s) ## Potential risks
181 lines
6.6 KiB
Go
181 lines
6.6 KiB
Go
package service
|
|
|
|
import (
|
|
"sync/atomic"
|
|
|
|
"go.temporal.io/server/common"
|
|
"go.temporal.io/server/common/dynamicconfig"
|
|
"go.temporal.io/server/common/log"
|
|
"go.temporal.io/server/common/log/tag"
|
|
"go.temporal.io/server/common/membership"
|
|
"go.temporal.io/server/common/metrics"
|
|
persistenceClient "go.temporal.io/server/common/persistence/client"
|
|
"go.temporal.io/server/common/primitives"
|
|
"go.temporal.io/server/common/quotas/calculator"
|
|
"go.temporal.io/server/common/rpc"
|
|
"go.temporal.io/server/common/rpc/interceptor"
|
|
"go.temporal.io/server/common/telemetry"
|
|
"go.uber.org/fx"
|
|
"google.golang.org/grpc"
|
|
)
|
|
|
|
type (
|
|
PersistenceLazyLoadedServiceResolver struct {
|
|
*atomic.Value // value type is membership.ServiceResolver
|
|
}
|
|
|
|
PersistenceRateLimitingParams struct {
|
|
fx.Out
|
|
|
|
PersistenceMaxQps persistenceClient.PersistenceMaxQps
|
|
PersistenceNamespaceMaxQps persistenceClient.PersistenceNamespaceMaxQps
|
|
PersistencePerShardNamespaceMaxQPS persistenceClient.PersistencePerShardNamespaceMaxQPS
|
|
OperatorRPSRatio persistenceClient.OperatorRPSRatio
|
|
PersistenceBurstRatio persistenceClient.PersistenceBurstRatio
|
|
DynamicRateLimitingParams persistenceClient.DynamicRateLimitingParams
|
|
}
|
|
|
|
GrpcServerOptionsParams struct {
|
|
fx.In
|
|
|
|
Logger log.Logger
|
|
RPCFactory common.RPCFactory
|
|
ServiceErrorInterceptor *interceptor.ServiceErrorInterceptor
|
|
RetryableInterceptor *interceptor.RetryableInterceptor
|
|
TelemetryInterceptor *interceptor.TelemetryInterceptor
|
|
NamespaceRateLimitInterceptor interceptor.NamespaceRateLimitInterceptor `optional:"true"`
|
|
RateLimitInterceptor *interceptor.RateLimitInterceptor
|
|
TracingStatsHandler telemetry.ServerStatsHandler
|
|
MetricsStatsHandler metrics.ServerStatsHandler
|
|
ContextMetadataInterceptor *interceptor.ContextMetadataInterceptor `optional:"true"`
|
|
AdditionalInterceptors []grpc.UnaryServerInterceptor `optional:"true"`
|
|
AdditionalStreamInterceptors []grpc.StreamServerInterceptor `optional:"true"`
|
|
}
|
|
)
|
|
|
|
var PersistenceLazyLoadedServiceResolverModule = fx.Options(
|
|
fx.Provide(func() PersistenceLazyLoadedServiceResolver {
|
|
return PersistenceLazyLoadedServiceResolver{
|
|
Value: &atomic.Value{},
|
|
}
|
|
}),
|
|
fx.Invoke(initPersistenceLazyLoadedServiceResolver),
|
|
)
|
|
|
|
func initPersistenceLazyLoadedServiceResolver(
|
|
serviceName primitives.ServiceName,
|
|
logger log.SnTaggedLogger,
|
|
serviceResolver membership.ServiceResolver,
|
|
lazyLoadedServiceResolver PersistenceLazyLoadedServiceResolver,
|
|
) {
|
|
lazyLoadedServiceResolver.Store(serviceResolver)
|
|
logger.Info("Initialized service resolver for persistence rate limiting", tag.Service(serviceName))
|
|
}
|
|
|
|
func (p PersistenceLazyLoadedServiceResolver) AvailableMemberCount() int {
|
|
if value := p.Load(); value != nil {
|
|
return value.(membership.ServiceResolver).AvailableMemberCount()
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func NewPersistenceRateLimitingParams(
|
|
maxQps dynamicconfig.IntPropertyFn,
|
|
globalMaxQps dynamicconfig.IntPropertyFn,
|
|
namespaceMaxQps dynamicconfig.IntPropertyFnWithNamespaceFilter,
|
|
globalNamespaceMaxQps dynamicconfig.IntPropertyFnWithNamespaceFilter,
|
|
perShardNamespaceMaxQps dynamicconfig.IntPropertyFnWithNamespaceFilter,
|
|
operatorRPSRatio dynamicconfig.FloatPropertyFn,
|
|
burstRatio dynamicconfig.FloatPropertyFn,
|
|
dynamicRateLimitingParams dynamicconfig.TypedPropertyFn[dynamicconfig.DynamicRateLimitingParams],
|
|
lazyLoadedServiceResolver PersistenceLazyLoadedServiceResolver,
|
|
logger log.Logger,
|
|
) PersistenceRateLimitingParams {
|
|
hostCalculator := calculator.NewLoggedCalculator(
|
|
calculator.ClusterAwareQuotaCalculator{
|
|
MemberCounter: lazyLoadedServiceResolver,
|
|
PerInstanceQuota: maxQps,
|
|
GlobalQuota: globalMaxQps,
|
|
},
|
|
log.With(logger, tag.ComponentPersistence, tag.ScopeHost),
|
|
)
|
|
namespaceCalculator := calculator.NewLoggedNamespaceCalculator(
|
|
calculator.ClusterAwareNamespaceQuotaCalculator{
|
|
MemberCounter: lazyLoadedServiceResolver,
|
|
PerInstanceQuota: namespaceMaxQps,
|
|
GlobalQuota: globalNamespaceMaxQps,
|
|
},
|
|
log.With(logger, tag.ComponentPersistence, tag.ScopeNamespace),
|
|
)
|
|
return PersistenceRateLimitingParams{
|
|
PersistenceMaxQps: func() int {
|
|
return int(hostCalculator.GetQuota())
|
|
},
|
|
PersistenceNamespaceMaxQps: func(namespace string) int {
|
|
return int(namespaceCalculator.GetQuota(namespace))
|
|
},
|
|
PersistencePerShardNamespaceMaxQPS: persistenceClient.PersistencePerShardNamespaceMaxQPS(perShardNamespaceMaxQps),
|
|
OperatorRPSRatio: persistenceClient.OperatorRPSRatio(operatorRPSRatio),
|
|
PersistenceBurstRatio: persistenceClient.PersistenceBurstRatio(burstRatio),
|
|
DynamicRateLimitingParams: persistenceClient.DynamicRateLimitingParams(dynamicRateLimitingParams),
|
|
}
|
|
}
|
|
|
|
func GrpcServerOptionsProvider(
|
|
params GrpcServerOptionsParams,
|
|
) []grpc.ServerOption {
|
|
|
|
grpcServerOptions, err := params.RPCFactory.GetInternodeGRPCServerOptions()
|
|
if err != nil {
|
|
params.Logger.Fatal("creating gRPC server options failed", tag.Error(err))
|
|
}
|
|
|
|
multiStats := rpc.MultiStatsHandler{}
|
|
if params.TracingStatsHandler != nil {
|
|
multiStats = append(multiStats, params.TracingStatsHandler)
|
|
}
|
|
if params.MetricsStatsHandler != nil {
|
|
multiStats = append(multiStats, params.MetricsStatsHandler)
|
|
}
|
|
if len(multiStats) > 0 {
|
|
grpcServerOptions = append(grpcServerOptions, grpc.StatsHandler(multiStats))
|
|
}
|
|
|
|
streamInterceptors := []grpc.StreamServerInterceptor{
|
|
params.TelemetryInterceptor.StreamIntercept,
|
|
interceptor.CustomErrorStreamInterceptor,
|
|
}
|
|
if len(params.AdditionalStreamInterceptors) > 0 {
|
|
streamInterceptors = append(streamInterceptors, params.AdditionalStreamInterceptors...)
|
|
}
|
|
|
|
return append(
|
|
grpcServerOptions,
|
|
grpc.ChainUnaryInterceptor(getUnaryInterceptors(params)...),
|
|
grpc.ChainStreamInterceptor(streamInterceptors...),
|
|
)
|
|
}
|
|
|
|
func getUnaryInterceptors(params GrpcServerOptionsParams) []grpc.UnaryServerInterceptor {
|
|
interceptors := []grpc.UnaryServerInterceptor{
|
|
params.ServiceErrorInterceptor.Intercept,
|
|
metrics.NewServerMetricsContextInjectorInterceptor(),
|
|
metrics.NewServerMetricsTrailerPropagatorInterceptor(params.Logger),
|
|
params.TelemetryInterceptor.UnaryIntercept,
|
|
}
|
|
|
|
interceptors = append(interceptors, params.AdditionalInterceptors...)
|
|
|
|
if params.NamespaceRateLimitInterceptor != nil {
|
|
interceptors = append(interceptors, params.NamespaceRateLimitInterceptor.Intercept)
|
|
}
|
|
|
|
interceptors = append(interceptors, params.RateLimitInterceptor.Intercept)
|
|
|
|
if params.ContextMetadataInterceptor != nil {
|
|
interceptors = append(interceptors, params.ContextMetadataInterceptor.Intercept)
|
|
}
|
|
|
|
return append(interceptors, params.RetryableInterceptor.Intercept)
|
|
}
|