-
Notifications
You must be signed in to change notification settings - Fork 5.8k
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
server: Change zlib compression level #47387
server: Change zlib compression level #47387
Conversation
This was `flate.HuffmanOnly` (-2) to 6 to match what MySQL does. Note that `compress/flate` doesn't define a const for level 6.
Skipping CI for Draft Pull Request. |
With this patch:
|
Hi @dveeden. Thanks for your PR. PRs from untrusted users cannot be marked as trusted with I understand the commands that are listed here. Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
/ok-to-test |
/test all |
Codecov Report
Additional details and impacted files@@ Coverage Diff @@
## master #47387 +/- ##
================================================
+ Coverage 72.3183% 72.7125% +0.3942%
================================================
Files 1352 1373 +21
Lines 400846 407184 +6338
================================================
+ Hits 289885 296074 +6189
- Misses 91782 92333 +551
+ Partials 19179 18777 -402
Flags with carried forward coverage won't be shown. Click here to find out more.
|
/test all |
/retest |
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 you check the result of 16M SQL as the issue described?
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: hawkingrei, lance6716 The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
[LGTM Timeline notifier]Timeline:
|
/retest |
@@ -381,12 +381,13 @@ func (cw *compressedWriter) Flush() error { | |||
// https://dev.mysql.com/doc/dev/mysql-server/latest/page_protocol_basic_compression_packet.html | |||
// suggests a MIN_COMPRESS_LENGTH of 50. | |||
minCompressLength := 50 | |||
zlibCompressDefaultLevel := 6 |
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.
Why "6" here?
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.
This is MySQL's choice #47278 (comment)
This was
flate.HuffmanOnly
(-2) to 6 to match what MySQL does.Note that
compress/flate
doesn't define a const for level 6.What problem does this PR solve?
Issue Number: close #47278
Problem Summary:
Related: #36780
What is changed and how it works?
Check List
Tests
Side effects
Documentation
Release note
Please refer to Release Notes Language Style Guide to write a quality release note.