Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Access] Update default grpc max message size to 1GiB #4609

Merged
merged 1 commit into from
Aug 9, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions utils/grpcutils/grpc.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,10 @@ import (
"github.com/onflow/flow-go/network/p2p/keyutils"
)

// DefaultMaxMsgSize use 20MB as the default message size limit.
// grpc library default is 4MB
const DefaultMaxMsgSize = 1024 * 1024 * 20
// DefaultMaxMsgSize use 1 GiB as the default message size limit.
// This enforces a sane max message size, while still allowing for reasonably large messages.
// grpc library default is 4 MiB.
const DefaultMaxMsgSize = 1 << (10 * 3) // 1 GiB

// CertificateConfig is used to configure an Certificate
type CertificateConfig struct {
Expand Down