-
Notifications
You must be signed in to change notification settings - Fork 17.9k
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
compress/flate: api to configure sliding window size #3155
Comments
The FLATE algorithm can also adjust its memLevel (the zlib name; compress/flate calls it hashBits). This also is important to be able to scale. Both of these are very important for reducing memory usage when dealing with many connections. See https://groups.google.com/d/msg/golang-nuts/DDz3-X1JNVI/vBdjTT1tvYoJ for more discussion. Note that these will impact compress/zlib, which currently has CINFO hardcoded as 0x78. That interface needs to support modifying window bits as well. It may be helpful to make maxStoreBlockSize configurable as well. It currently allocates 64k per instance in the NoCompression case. Servers implementing http2 and spdy can generate thousands or tens of thousands of long-lived zlib writers and readers, so minimizing memory usage can be critical. |
/cc @dsnet (per golang-nuts ping of this bug) |
@bradfitz are there any plan to move forward with this? zlib has fixed several of it's outstanding issues around windowBits. |
@jeffreydwalter, no clue. @dsnet owns this. |
I'm not actively working on this. It's not clear to me whether users want the ability to configure the sliding window size for the encoder |
I think it makes sense to have tunability for both. Basically, parity with nodejs (the ability to specify windowBits and memLevel) would be nice https://nodejs.org/api/zlib.html#zlib_memory_usage_tuning |
I'd have some time to look into this. Is there some current thinking in which direction it could/should go regarding the API surface? |
zlib cgo wrapper |
@rnapier I did some investigation for this issue starting with your test here https://github.com/rnapier/ztest and your comment on the mailing list in 2015:
I tried to understand the code and went over to zlib's implementation you mentioned as a reference. zlib seems to have a little secret regarding the window size as it doesn't support a value for MAX_WBITS of 8 for the window size AFAIKS: where it states that: This seems to be document in issues for zlib madler/zlib#171
And as you wrote
its because it doesn't implement the feature properly. @rnapier, @dsnet So in consequence what would be the recommendation to go on with this issue? zlib seems to have a bug for a windowBits of 8 and upgrades it to 9. I could invest some time to fix that, but I'm not sure if this is worth the time and perhaps its enough to be compatible with zlib's implementation and capabilities. Setting logWindowSize of 9 in deflate.go seems to be at least OK for the current tests in compress/flate as I can see. |
regarding tests, I re-checked with tip
I haven't found yet if these two fail because of implicit expectations in the implementation about the window size not covered by the contant |
For |
The text was updated successfully, but these errors were encountered: