pkg/{rpc,server,tlsopts}: pick larger defaults for buffer sizes
these may not be optimal but they're probably better based on our previous testing. we can tune better in the future now that the groundwork is there. Change-Id: Iafaee86d3181287c33eadf6b7eceb307dda566a6
This commit is contained in:
parent
3a0b71ae5b
commit
f3b20215b0
2
go.mod
2
go.mod
@ -115,5 +115,5 @@ require (
|
||||
gopkg.in/olivere/elastic.v5 v5.0.76 // indirect
|
||||
gopkg.in/spacemonkeygo/monkit.v2 v2.0.0-20190612171030-cf5a9e6f8fd2
|
||||
gopkg.in/yaml.v2 v2.2.2
|
||||
storj.io/drpc v0.0.7-0.20191105232401-03e121f6d8e4
|
||||
storj.io/drpc v0.0.7-0.20191115031725-2171c57838d2
|
||||
)
|
||||
|
4
go.sum
4
go.sum
@ -576,5 +576,5 @@ gotest.tools v2.2.0+incompatible/go.mod h1:DsYFclhRJ6vuDpmuTbkuFWG+y2sxOXAzmJt81
|
||||
honnef.co/go/tools v0.0.0-20190102054323-c2f93a96b099/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4=
|
||||
honnef.co/go/tools v0.0.0-20190106161140-3f1c8253044a/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4=
|
||||
honnef.co/go/tools v0.0.0-20190523083050-ea95bdfd59fc/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4=
|
||||
storj.io/drpc v0.0.7-0.20191105232401-03e121f6d8e4 h1:ekHWFW5RgWp7DvUVpHSCXeuMikaZQZSBZDSUB0RfPp0=
|
||||
storj.io/drpc v0.0.7-0.20191105232401-03e121f6d8e4/go.mod h1:/ascUDbzNAv0A3Jj7wUIKFBH2JdJ2uJIBO/b9+2yHgQ=
|
||||
storj.io/drpc v0.0.7-0.20191115031725-2171c57838d2 h1:8SgLYEhe99R8QlAD1EAOBPRyIR+cn2hqkXtWlAUPf/c=
|
||||
storj.io/drpc v0.0.7-0.20191115031725-2171c57838d2/go.mod h1:/ascUDbzNAv0A3Jj7wUIKFBH2JdJ2uJIBO/b9+2yHgQ=
|
||||
|
@ -86,6 +86,7 @@ func (opts *Options) tlsConfig(isServer bool, verificationFuncs ...peertls.PeerC
|
||||
Certificates: []tls.Certificate{*opts.Cert},
|
||||
InsecureSkipVerify: true,
|
||||
MinVersion: tls.VersionTLS12,
|
||||
DynamicRecordSizingDisabled: true, // always start with big records
|
||||
VerifyPeerCertificate: peertls.VerifyPeerFunc(
|
||||
verificationFuncs...,
|
||||
),
|
||||
|
@ -11,12 +11,25 @@ import (
|
||||
|
||||
"go.uber.org/zap"
|
||||
|
||||
"storj.io/drpc/drpcconn"
|
||||
"storj.io/drpc/drpcmanager"
|
||||
"storj.io/drpc/drpcstream"
|
||||
"storj.io/storj/pkg/pb"
|
||||
"storj.io/storj/pkg/peertls/tlsopts"
|
||||
"storj.io/storj/pkg/storj"
|
||||
"storj.io/storj/private/memory"
|
||||
)
|
||||
|
||||
// NewDefaultManagerOptions returns the default options we use for drpc managers.
|
||||
func NewDefaultManagerOptions() drpcmanager.Options {
|
||||
return drpcmanager.Options{
|
||||
WriterBufferSize: 1024,
|
||||
Stream: drpcstream.Options{
|
||||
SplitSize: (4096 * 2) - 256,
|
||||
},
|
||||
}
|
||||
}
|
||||
|
||||
// Dialer holds configuration for dialing.
|
||||
type Dialer struct {
|
||||
// TLSOptions controls the tls options for dialing. If it is nil, only
|
||||
@ -37,6 +50,9 @@ type Dialer struct {
|
||||
|
||||
// PoolCapacity is the maximum number of cached connections to hold.
|
||||
PoolCapacity int
|
||||
|
||||
// ConnectionOptions controls the options that we pass to drpc connections.
|
||||
ConnectionOptions drpcconn.Options
|
||||
}
|
||||
|
||||
// NewDefaultDialer returns a Dialer with default timeouts set.
|
||||
@ -45,6 +61,9 @@ func NewDefaultDialer(tlsOptions *tlsopts.Options) Dialer {
|
||||
TLSOptions: tlsOptions,
|
||||
DialTimeout: 20 * time.Second,
|
||||
PoolCapacity: 5,
|
||||
ConnectionOptions: drpcconn.Options{
|
||||
Manager: NewDefaultManagerOptions(),
|
||||
},
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -18,6 +18,7 @@ import (
|
||||
"storj.io/storj/pkg/identity"
|
||||
"storj.io/storj/pkg/listenmux"
|
||||
"storj.io/storj/pkg/peertls/tlsopts"
|
||||
"storj.io/storj/pkg/rpc"
|
||||
)
|
||||
|
||||
// Service represents a specific gRPC method collection to be registered
|
||||
@ -64,6 +65,10 @@ func New(log *zap.Logger, tlsOptions *tlsopts.Options, publicAddr, privateAddr s
|
||||
done: make(chan struct{}),
|
||||
}
|
||||
|
||||
serverOptions := drpcserver.Options{
|
||||
Manager: rpc.NewDefaultManagerOptions(),
|
||||
}
|
||||
|
||||
unaryInterceptor := server.logOnErrorUnaryInterceptor
|
||||
if interceptor != nil {
|
||||
unaryInterceptor = CombineInterceptors(unaryInterceptor, interceptor)
|
||||
@ -75,7 +80,7 @@ func New(log *zap.Logger, tlsOptions *tlsopts.Options, publicAddr, privateAddr s
|
||||
}
|
||||
server.public = public{
|
||||
listener: publicListener,
|
||||
drpc: drpcserver.New(),
|
||||
drpc: drpcserver.NewWithOptions(serverOptions),
|
||||
grpc: grpc.NewServer(
|
||||
grpc.StreamInterceptor(server.logOnErrorStreamInterceptor),
|
||||
grpc.UnaryInterceptor(unaryInterceptor),
|
||||
@ -89,7 +94,7 @@ func New(log *zap.Logger, tlsOptions *tlsopts.Options, publicAddr, privateAddr s
|
||||
}
|
||||
server.private = private{
|
||||
listener: privateListener,
|
||||
drpc: drpcserver.New(),
|
||||
drpc: drpcserver.NewWithOptions(serverOptions),
|
||||
grpc: grpc.NewServer(),
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user