@@ -27,6 +27,7 @@ package config
27
27
import (
28
28
"bytes"
29
29
"fmt"
30
+ "math"
30
31
"strings"
31
32
"time"
32
33
@@ -40,9 +41,14 @@ import (
40
41
"go.temporal.io/server/common/persistence/visibility/store/elasticsearch/client"
41
42
"go.temporal.io/server/common/primitives"
42
43
"go.temporal.io/server/common/telemetry"
44
+ "google.golang.org/grpc/keepalive"
43
45
"gopkg.in/yaml.v3"
44
46
)
45
47
48
+ const (
49
+ infinity = time .Duration (math .MaxInt64 )
50
+ )
51
+
46
52
type (
47
53
// Config contains the configuration for a set of temporal services
48
54
Config struct {
@@ -107,6 +113,39 @@ type (
107
113
// forwarded from HTTP to gRPC. Any value with a trailing * will match the prefix before
108
114
// the asterisk (eg. `x-internal-*`)
109
115
HTTPAdditionalForwardedHeaders []string `yaml:"httpAdditionalForwardedHeaders"`
116
+ // KeepAliveServerConfig keep alive configuration for the server
117
+ KeepAliveServerConfig KeepAliveServerConfig `yaml:"keepAliveServerConfig"`
118
+ // ClientConnectionConfig defines the connection config used by other services
119
+ // when they create a gRPC client connection to this service.
120
+ ClientConnectionConfig ClientConnectionConfig `yaml:"clientConnectionConfig"`
121
+ }
122
+
123
+ KeepAliveServerParameters struct {
124
+ MaxConnectionIdle * time.Duration `yaml:"maxConnectionIdle"`
125
+ MaxConnectionAge * time.Duration `yaml:"maxConnectionAge"`
126
+ MaxConnectionAgeGrace * time.Duration `yaml:"maxConnectionAgeGrace"`
127
+ Time * time.Duration `yaml:"keepAliveTime"`
128
+ Timeout * time.Duration `yaml:"keepAliveTimeout"`
129
+ }
130
+
131
+ KeepAliveClientParameters struct {
132
+ Time * time.Duration `yaml:"keepAliveTime"`
133
+ Timeout * time.Duration `yaml:"keepAliveTimeout"`
134
+ PermitWithoutStream * bool `yaml:"keepAlivePermitWithoutStream"`
135
+ }
136
+
137
+ ClientConnectionConfig struct {
138
+ KeepAliveClientConfig * KeepAliveClientParameters `yaml:"keepAliveClientParameters"`
139
+ }
140
+
141
+ KeepAliveServerEnforcementPolicy struct {
142
+ MinTime * time.Duration `yaml:"minTime"`
143
+ PermitWithoutStream * bool `yaml:"permitWithoutStream"`
144
+ }
145
+
146
+ KeepAliveServerConfig struct {
147
+ KeepAliveServerParameters * KeepAliveServerParameters `yaml:"keepAliveServerParameters"`
148
+ KeepAliveEnforcementPolicy * KeepAliveServerEnforcementPolicy `yaml:"keepAliveEnforcementPolicy"`
110
149
}
111
150
112
151
// Global contains config items that apply process-wide to all services
@@ -652,3 +691,78 @@ func (p *JWTKeyProvider) HasSourceURIsConfigured() bool {
652
691
}
653
692
return false
654
693
}
694
+
695
+ func (k * KeepAliveServerConfig ) GetKeepAliveServerParameters () keepalive.ServerParameters {
696
+ // the default config is same as grpc default config, same for the below client config and enforcement policy
697
+ defaultConfig := keepalive.ServerParameters {
698
+ MaxConnectionIdle : infinity ,
699
+ MaxConnectionAge : infinity ,
700
+ MaxConnectionAgeGrace : infinity ,
701
+ Time : 2 * time .Hour ,
702
+ Timeout : 20 * time .Second ,
703
+ }
704
+ if k == nil || k .KeepAliveServerParameters == nil {
705
+ return defaultConfig
706
+ }
707
+ kp := k .KeepAliveServerParameters
708
+ if kp .MaxConnectionIdle != nil {
709
+ defaultConfig .MaxConnectionIdle = * kp .MaxConnectionIdle
710
+ }
711
+ if kp .MaxConnectionAge != nil {
712
+ defaultConfig .MaxConnectionAge = * kp .MaxConnectionAge
713
+ }
714
+ if kp .MaxConnectionAgeGrace != nil {
715
+ defaultConfig .MaxConnectionAgeGrace = * kp .MaxConnectionAgeGrace
716
+ }
717
+ if kp .Time != nil {
718
+ defaultConfig .Time = * kp .Time
719
+ }
720
+ if kp .Timeout != nil {
721
+ defaultConfig .Timeout = * kp .Timeout
722
+ }
723
+ return defaultConfig
724
+ }
725
+
726
+ func (c * ClientConnectionConfig ) GetKeepAliveClientParameters () keepalive.ClientParameters {
727
+ defaultConfig := keepalive.ClientParameters {
728
+ Time : infinity ,
729
+ Timeout : 20 * time .Second ,
730
+ PermitWithoutStream : false ,
731
+ }
732
+
733
+ if c == nil || c .KeepAliveClientConfig == nil {
734
+ return defaultConfig
735
+ }
736
+
737
+ if c .KeepAliveClientConfig .Time != nil {
738
+ defaultConfig .Time = * c .KeepAliveClientConfig .Time
739
+ }
740
+ if c .KeepAliveClientConfig .Timeout != nil {
741
+ defaultConfig .Timeout = * c .KeepAliveClientConfig .Timeout
742
+ }
743
+ if c .KeepAliveClientConfig .PermitWithoutStream != nil {
744
+ defaultConfig .PermitWithoutStream = * c .KeepAliveClientConfig .PermitWithoutStream
745
+ }
746
+
747
+ return defaultConfig
748
+ }
749
+
750
+ func (k * KeepAliveServerConfig ) GetKeepAliveEnforcementPolicy () keepalive.EnforcementPolicy {
751
+ defaultConfig := keepalive.EnforcementPolicy {
752
+ MinTime : 5 * time .Minute ,
753
+ PermitWithoutStream : false ,
754
+ }
755
+
756
+ if k == nil || k .KeepAliveEnforcementPolicy == nil {
757
+ return defaultConfig
758
+ }
759
+
760
+ if k .KeepAliveEnforcementPolicy .MinTime != nil {
761
+ defaultConfig .MinTime = * k .KeepAliveEnforcementPolicy .MinTime
762
+ }
763
+ if k .KeepAliveEnforcementPolicy .PermitWithoutStream != nil {
764
+ defaultConfig .PermitWithoutStream = * k .KeepAliveEnforcementPolicy .PermitWithoutStream
765
+ }
766
+
767
+ return defaultConfig
768
+ }
0 commit comments