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

gzip response only if it exceeds a minimal length #2267

Merged
merged 10 commits into from May 31, 2023

Conversation

ioppermann
Copy link
Contributor

If the response is too short, e.g. a few bytes, compressing the response makes it even larger. The new parameter MinLength to the GzipConfig struct allows to set a threshold (in bytes) as of which response size the compression should be applied. If the response is shorter, no compression will be applied.

If the response is too short, e.g. a few bytes, compressing the
response makes it even larger. The new parameter MinLength to the
GzipConfig struct allows to set a threshold (in bytes) as of which
response size the compression should be applied. If the response
is shorter, no compression will be applied.
@aldas
Copy link
Contributor

aldas commented Sep 9, 2022

I think this will break http.Flusher interface logic. If you partially write response to the client and that part is smaller than limit and now call flush - what will happen? What status client will see for flushes response as it seems that func (w *gzipResponseWriter) WriteHeader(code int) { has been changed. If you flush before hitting the limit and continue calling write and assuming that response was flushed and written to the client without zipping it - will gzipper kick in after limit has reached?

If GzipConfig.MinLength is to bee number it needs to have comments at which size it makes sense to use this feature. Writing 1 byte from handler gives me 26 byte of gzipped data. https://en.wikipedia.org/wiki/Gzip#File_format says that gzip header is 10 bytes and footer 8 bytes + data + some something else. so minimum is probably something around 19-20 bytes?
Does it even make sense to set it larger number than 20?

@aldas
Copy link
Contributor

aldas commented Sep 9, 2022

@ioppermann
Copy link
Contributor Author

@aldas Thanks for your thoughts.

For the http.Flusher it must probably enforce a gzip'ed response (ignoring the threshold) in order not to break the interface logic.

Regarding the threshold for compressing the response, I would say it depends on the application. For an API with JSON responses, a lower threshold or no threshold at all might be appropriate. But if an API has many empty responses (or a simple OK), then compressing the response will make it bigger and consumes more CPU (on the server and client) and increases the latency. It really depends on the use-case at hand.

@aldas
Copy link
Contributor

aldas commented Sep 9, 2022

I think that field needs definitely longer description than at the moment. I you way that most of the people would not understand what they are doing and start setting random numbers there. There should be declaration of related aspects that you should consider when changing this number so there would be somewhat informed decision.

@aldas
Copy link
Contributor

aldas commented Sep 9, 2022

and probably gzipResponseWriter.buffer needs to be pooled as we are already pooling gzip.Writer

@ioppermann
Copy link
Contributor Author

Any more comments on this?

@codecov
Copy link

codecov bot commented Apr 12, 2023

Codecov Report

Patch coverage: 94.11% and no project coverage change.

Comparison is base (7d54690) 92.88% compared to head (684b743) 92.89%.

Additional details and impacted files
@@           Coverage Diff           @@
##           master    #2267   +/-   ##
=======================================
  Coverage   92.88%   92.89%           
=======================================
  Files          39       39           
  Lines        4526     4574   +48     
=======================================
+ Hits         4204     4249   +45     
- Misses        234      236    +2     
- Partials       88       89    +1     
Impacted Files Coverage Δ
middleware/compress.go 86.32% <94.11%> (+5.16%) ⬆️

Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here.

☔ View full report in Codecov by Sentry.
📢 Do you have feedback about the report comment? Let us know in this issue.

@aldas
Copy link
Contributor

aldas commented Apr 15, 2023

@ioppermann other than that test function should not consist of multiple testcases - divide it to multiple test functions or use table based tests, I think this PR is OK. After #2355 I am little bit vary of changing this middleware but I can not find any problems to block to ATM :)

just to be sure I looked what other frameworks are doing - similar thing for Gin middleware https://github.com/nanmu42/gzip/blob/v1/writerwrapper.go FastHTTP does some minimal length checking https://github.com/valyala/fasthttp/blob/87cb886157ae414e178fd5bc14a57d5e1c8fcadb/http.go#L1766

@lammel could you please review this.

@ioppermann
Copy link
Contributor Author

@aldas I fixed the linter error from CI pipeline and I splitted up the tests such that each test only tests one thing.

Copy link
Contributor

@lammel lammel left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM!

We have all issues addressed: sane default, sync.pool, clean tests and ensure we gzip in uncertain situations.

Thnx @ioppermann , approved from my side.

@aldas aldas merged commit 42f07ed into labstack:master May 31, 2023
13 checks passed
@bnewbold
Copy link

bnewbold commented Jun 1, 2023

Serendipitously, just read the master branch code and tried to use the MinLength field, then realized this was only merged in the past 24 hours and hadn't been released yet.

This probably isn't the best place to request, but a tagged version would be great!

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.

None yet

4 participants