-
Notifications
You must be signed in to change notification settings - Fork 7
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
feat: add timeouts, max payload size #153
Conversation
Signed-off-by: Ramon Petgrave <ramon.petgrave64@gmail.com>
Signed-off-by: Ramon Petgrave <ramon.petgrave64@gmail.com>
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #153 +/- ##
==========================================
+ Coverage 33.95% 34.51% +0.55%
==========================================
Files 35 35
Lines 2668 2703 +35
==========================================
+ Hits 906 933 +27
- Misses 1675 1683 +8
Partials 87 87 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
Discussion from 4/1 meeting: HTTP proxies to gRPC, so we should test what the error is when gRPC times out for an HTTP request. We can also configure the idle timeout for HTTP to match the gRPC timeout here, which is what we do in Fulcio here. re: max receiving size, gRPC defaults to 4Mb. We have a hard limit of 128Mb at the load balancer - https://github.com/sigstore/public-good-instance/blob/33d9d6f53441ead73b2ba60dfa15c5d2329634b6/terraform/environments/staging/1-infrastructure/ingress.tf#L229 |
For HTTP setting the max byte size - https://github.com/sigstore/fulcio/blob/0c254bdd4be4fa736d1e3e7e1a26616cd5734b48/cmd/app/http.go#L90 Whatever we set in gRPC should be matched in the HTTP server. |
Signed-off-by: Ramon Petgrave <ramon.petgrave64@gmail.com>
Signed-off-by: Ramon Petgrave <ramon.petgrave64@gmail.com>
Signed-off-by: Ramon Petgrave <ramon.petgrave64@gmail.com>
Signed-off-by: Ramon Petgrave <ramon.petgrave64@gmail.com>
Signed-off-by: Ramon Petgrave <ramon.petgrave64@gmail.com>
Signed-off-by: Ramon Petgrave <ramon.petgrave64@gmail.com>
Signed-off-by: Ramon Petgrave <ramon.petgrave64@gmail.com>
Signed-off-by: Ramon Petgrave <ramon.petgrave64@gmail.com>
Signed-off-by: Ramon Petgrave <ramon.petgrave64@gmail.com>
Signed-off-by: Ramon Petgrave <ramon.petgrave64@gmail.com>
Signed-off-by: Ramon Petgrave <ramon.petgrave64@gmail.com>
Signed-off-by: Ramon Petgrave <ramon.petgrave64@gmail.com>
pkg/server/grpc.go
Outdated
grpc.ConnectionTimeout(config.timeout), | ||
grpc.KeepaliveParams(keepalive.ServerParameters{MaxConnectionIdle: config.timeout}), | ||
// explicitly set to 4MB. https://github.com/grpc/grpc-go/blob/cdbdb759dd67c89544f9081f854c284493b5461c/server.go#L59C39-L59C54 | ||
grpc.MaxRecvMsgSize(defaultMaxSizeBytes), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
can this be a flag value, max-request-body-size
, and passed through configuration?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There is also the DefaultMaxHeaderBytes, which by default is 1MB, but some providers like GCP load balancer limit it to 8KB. Should we also make that configurable?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That default seems fine and not something we'd need to modify.
Signed-off-by: Ramon Petgrave <ramon.petgrave64@gmail.com>
Signed-off-by: Ramon Petgrave <ramon.petgrave64@gmail.com>
Summary
The timeout can be configured at CLI with
--grpc-timeout=30s
, for example.We use this value for both when establishing a connection and when the connection is established but idle.
Testing Process
No new unit tests added against these changes, specifically. It is difficult to test the timeouts, but we can manually test the max payload size.
TODO:
Release Note
Adds timeouts, max payload size, and payload size metrics.
Documentation