]> git.kaiwu.me - nginx.git/commit
Buffers reuse in chunked filter.
authorMaxim Dounin <mdounin@mdounin.ru>
Thu, 15 Sep 2011 15:25:42 +0000 (15:25 +0000)
committerMaxim Dounin <mdounin@mdounin.ru>
Thu, 15 Sep 2011 15:25:42 +0000 (15:25 +0000)
commita890b313f34bdcd6f95e40c75084f6ea5dd8a53c
tree1d9a27cd0eb5edfb7e5bb5296ae4f317f12c3d61
parent57b4fdb6c8befc14497afa0119e29b60f5efd0bb
Buffers reuse in chunked filter.

There were 2 buffers allocated on each buffer chain sent through chunked
filter (one buffer for chunk size, another one for trailing CRLF, about
120 bytes in total on 32-bit platforms).  This resulted in large memory
consumption with long-lived requests sending many buffer chains.  Usual
example of problematic scenario is streaming though proxy with
proxy_buffering set to off.

Introduced buffers reuse reduces memory consumption in the above problematic
scenario.

See here for initial report:
http://mailman.nginx.org/pipermail/nginx/2010-April/019814.html
src/http/modules/ngx_http_chunked_filter_module.c