comparison src/event/quic/ngx_event_quic_ssl.c @ 8946:56dec0d4e5b1 quic

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.
author Roman Arutyunyan <arut@nginx.com>
date Fri, 24 Dec 2021 18:13:51 +0300
parents 3341e4089c6c
children 6ccf3867959a
comparison
equal deleted inserted replaced
8945:e72db9162180 8946:56dec0d4e5b1
367 367
368 return NGX_OK; 368 return NGX_OK;
369 } 369 }
370 370
371 if (f->offset > ctx->crypto_received) { 371 if (f->offset > ctx->crypto_received) {
372 return ngx_quic_order_bufs(c, &ctx->crypto, frame->data, 372 return ngx_quic_order_bufs(c, &ctx->crypto, frame->data, f->length,
373 f->offset - ctx->crypto_received); 373 f->offset - ctx->crypto_received);
374 } 374 }
375 375
376 ngx_quic_trim_bufs(frame->data, ctx->crypto_received - f->offset); 376 ngx_quic_trim_bufs(frame->data, ctx->crypto_received - f->offset);
377 377