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

feat: add timeouts, max payload size #153

Merged
merged 18 commits into from
Apr 3, 2025

Conversation

ramonpetgrave64
Copy link
Contributor

@ramonpetgrave64 ramonpetgrave64 commented Mar 27, 2025

Summary

  • Adds timeouts for the GRPC server.
  • Adds max payload size, and metrics for the payload sizes

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.

payload_size=$((5 * 1024 * 1024)) 
payload_file="payload.json"
random_data=$(head -c "$payload_size" /dev/urandom | base64)
json_payload=$(cat <<EOF
{
  "data": "$random_data"
}
EOF
)
echo "$json_payload" > "$payload_file"
curl -X POST \
  -H "Content-Type: application/json" \
  -d @- \
  http://localhost:3000/api/v2/log/entries < payload.json 

{"code":3, "message":"http: request body too large", "details":[]}%   

TODO:

  • since the grpc server is fronted by an http proxy , determine if it makes sense to set the grpc server's connection and idle timeouts.
  • determine a good MaxRecvMsgSize
  • A way to test the timeouts and payload sizes

Release Note

Adds timeouts, max payload size, and payload size metrics.

Documentation

Signed-off-by: Ramon Petgrave <ramon.petgrave64@gmail.com>
Signed-off-by: Ramon Petgrave <ramon.petgrave64@gmail.com>
Copy link

codecov bot commented Mar 27, 2025

Codecov Report

Attention: Patch coverage is 85.71429% with 8 lines in your changes missing coverage. Please review.

Project coverage is 34.51%. Comparing base (faee49c) to head (b1def17).
Report is 5 commits behind head on main.

Files with missing lines Patch % Lines
cmd/rekor-server/app/serve.go 0.00% 8 Missing ⚠️
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.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.

@haydentherapper
Copy link
Contributor

haydentherapper commented Apr 1, 2025

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

@haydentherapper
Copy link
Contributor

haydentherapper commented Apr 1, 2025

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>
@ramonpetgrave64 ramonpetgrave64 changed the title feat: add timeouts feat: add timeouts, max payload size Apr 1, 2025
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>
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),
Copy link
Contributor

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?

Copy link
Contributor Author

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?

Copy link
Contributor

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>
Signed-off-by: Ramon Petgrave <ramon.petgrave64@gmail.com>
@ramonpetgrave64 ramonpetgrave64 marked this pull request as ready for review April 2, 2025 23:09
@ramonpetgrave64 ramonpetgrave64 requested review from a team as code owners April 2, 2025 23:09
@ramonpetgrave64 ramonpetgrave64 merged commit 6f077f6 into sigstore:main Apr 3, 2025
11 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants