Set gRPC keepalives to mirror Yamux keepalive behaviour
This commit is contained in:
parent
df538b9bdc
commit
f4257f91f6
|
@ -5,8 +5,10 @@ import (
|
||||||
"fmt"
|
"fmt"
|
||||||
"net"
|
"net"
|
||||||
"sync"
|
"sync"
|
||||||
|
"time"
|
||||||
|
|
||||||
"google.golang.org/grpc"
|
"google.golang.org/grpc"
|
||||||
|
"google.golang.org/grpc/keepalive"
|
||||||
|
|
||||||
"github.com/hashicorp/consul/agent/metadata"
|
"github.com/hashicorp/consul/agent/metadata"
|
||||||
"github.com/hashicorp/consul/agent/pool"
|
"github.com/hashicorp/consul/agent/pool"
|
||||||
|
@ -64,7 +66,22 @@ func (c *ClientConnPool) ClientConn(datacenter string) (*grpc.ClientConn, error)
|
||||||
grpc.WithDisableRetry(),
|
grpc.WithDisableRetry(),
|
||||||
grpc.WithStatsHandler(newStatsHandler(defaultMetrics())),
|
grpc.WithStatsHandler(newStatsHandler(defaultMetrics())),
|
||||||
// nolint:staticcheck // there is no other supported alternative to WithBalancerName
|
// nolint:staticcheck // there is no other supported alternative to WithBalancerName
|
||||||
grpc.WithBalancerName("pick_first"))
|
grpc.WithBalancerName("pick_first"),
|
||||||
|
// Keep alive parameters are based on the same default ones we used for
|
||||||
|
// Yamux. These are somewhat arbitrary but we did observe in scale testing
|
||||||
|
// that the gRPC defaults (servers send keepalives only every 2 hours,
|
||||||
|
// clients never) seemed to result in TCP drops going undetected until
|
||||||
|
// actual updates needed to be sent which caused unnecessary delays for
|
||||||
|
// deliveries. These settings should be no more work for servers than
|
||||||
|
// existing yamux clients but hopefully allow TCP drops to be detected
|
||||||
|
// earlier and so have a smaller chance of going unnoticed until there are
|
||||||
|
// actual updates to send out from the servers. The servers have a policy to
|
||||||
|
// not accept pings any faster than once every 15 seconds to protect against
|
||||||
|
// abuse.
|
||||||
|
grpc.WithKeepaliveParams(keepalive.ClientParameters{
|
||||||
|
Time: 30 * time.Second,
|
||||||
|
Timeout: 10 * time.Second,
|
||||||
|
}))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
|
|
@ -6,8 +6,10 @@ package grpc
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
"net"
|
"net"
|
||||||
|
"time"
|
||||||
|
|
||||||
"google.golang.org/grpc"
|
"google.golang.org/grpc"
|
||||||
|
"google.golang.org/grpc/keepalive"
|
||||||
)
|
)
|
||||||
|
|
||||||
// NewHandler returns a gRPC server that accepts connections from Handle(conn).
|
// NewHandler returns a gRPC server that accepts connections from Handle(conn).
|
||||||
|
@ -20,6 +22,9 @@ func NewHandler(addr net.Addr, register func(server *grpc.Server)) *Handler {
|
||||||
srv := grpc.NewServer(
|
srv := grpc.NewServer(
|
||||||
grpc.StatsHandler(newStatsHandler(metrics)),
|
grpc.StatsHandler(newStatsHandler(metrics)),
|
||||||
grpc.StreamInterceptor((&activeStreamCounter{metrics: metrics}).Intercept),
|
grpc.StreamInterceptor((&activeStreamCounter{metrics: metrics}).Intercept),
|
||||||
|
grpc.KeepaliveEnforcementPolicy(keepalive.EnforcementPolicy{
|
||||||
|
MinTime: 15 * time.Second,
|
||||||
|
}),
|
||||||
)
|
)
|
||||||
register(srv)
|
register(srv)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue