]> git.kaiwu.me - nginx.git/commit
QUIC: avoid excessive buffer allocations in stream output.
authorRoman Arutyunyan <arut@nginx.com>
Fri, 24 Dec 2021 15:13:51 +0000 (18:13 +0300)
committerRoman Arutyunyan <arut@nginx.com>
Fri, 24 Dec 2021 15:13:51 +0000 (18:13 +0300)
commit97b34a01e268b2d4946375b806b7e6364e765d70
treede60c443b947f5bc506602f394d8c77c2445b358
parent541ec50c42ca5190dd101dc27964ee8f9a8af8cf
QUIC: avoid excessive buffer allocations in stream output.

Previously, when a few bytes were send to a QUIC stream by the application, a
4K buffer was allocated for these bytes.  Then a STREAM frame was created and
that entire buffer was used as data for that frame.  The frame with the buffer
were in use up until the frame was acked by client.  Meanwhile, when more
bytes were send to the stream, more buffers were allocated and assigned as
data to newer STREAM frames.  In this scenario most buffer memory is unused.

Now the unused part of the stream output buffer is available for further
stream output while earlier parts of the buffer are waiting to be acked.
This is achieved by splitting the output buffer.
src/event/quic/ngx_event_quic.h
src/event/quic/ngx_event_quic_frames.c
src/event/quic/ngx_event_quic_frames.h
src/event/quic/ngx_event_quic_ssl.c
src/event/quic/ngx_event_quic_streams.c