0
Fork 0
mirror of https://github.com/ninenines/cowboy.git synced 2025-07-14 04:10:24 +00:00
cowboy/test
Loïc Hoguin 49be0f57cf
Implement dynamic socket buffer sizes
Cowboy will set the socket's buffer size dynamically to
better fit the current workload. When the incoming data
is small, a low buffer size reduces the memory footprint
and improves responsiveness and therefore performance.
When the incoming data is large, such as large HTTP
request bodies, a larger buffer size helps us avoid
doing too many binary appends and related allocations.

Setting a large buffer size for all use cases is
sub-optimal because allocating more than needed
necessarily results in a performance hit (not just
increased memory usage).

By default Cowboy starts with a buffer size of 8192 bytes.
It then doubles or halves the buffer size depending on
the size of the data it receives from the socket. It
stops decreasing at 8192 and increasing at 131072 by
default.

To keep track of the size of the incoming data Cowboy
maintains a moving average. It allows Cowboy to avoid
changing the buffer too often but still react quickly
when necessary. Cowboy will increase the buffer size
when the moving average is above 90% of the current
buffer size, and decrease when the moving average is
below 40% of the current buffer size.

The current buffer size and moving average are
propagated when switching protocols. The dynamic buffer
is implemented in HTTP/1, HTTP/2 and HTTP/1 Websocket.
HTTP/2 Websocket has it disabled because it doesn't
interact directly with the socket; in that case it
is HTTP/2 that has a dynamic buffer.

The dynamic buffer provides a very large performance improvement
in many scenarios, at minimal cost for others. Because it largely
depend on the underlying protocol the improvements are no all equal.
TLS and compression also impact the results.

The improvement when reading a large request body, with the
requests repeated in a fast loop are:

* HTTP: 6x to 20x faster
* HTTPS: 2x to 6x faster
* H2: 4x to 5x faster
* H2C: 20x to 40x faster

I am not sure why H2C's performance was so bad, especially compared
to H2, when using default buffer sizes. Dynamic buffers make H2C a
lot more viable with default settings.

The performance impact on "hello world" type requests is minimal,
it goes from -5% to +5% roughly.

Websocket improvements vary again depending on the protocol, but
also depending on whether compression is enabled:

* HTTP echo: roughly 2x faster
* HTTP send: roughly 4x faster
* H2C echo: roughly 2x faster
* H2C send: 3x to 4x faster

In the echo test we reply back, and Gun doesn't have the dynamic
buffer optimisation, so that probably explains the x2 difference.

With compression however there isn't much improvement. The results
are roughly within -10% to +10% of each other. Zlib compression
seems to be a bottleneck, or at least to modify the performance
profile to such an extent that the size of the buffer does not
matter. This happens to randomly generated binary data as well
so it is probably not caused by the test data.
2025-02-05 14:29:58 +01:00
..
handlers Implement dynamic socket buffer sizes 2025-02-05 14:29:58 +01:00
rfc9114_SUITE_data Initial HTTP/3 implementation 2024-03-26 15:53:48 +01:00
static_handler_SUITE_data cowboy_static: Add support for files in EZ archives 2017-01-24 11:36:58 +01:00
ws_autobahn_SUITE_data Switch to running autobahntestsuite via Docker 2025-01-15 13:31:19 +01:00
ws_perf_SUITE_data Add ws_perf_SUITE to measure Websocket performance 2025-01-15 13:28:57 +01:00
ws_SUITE_data Websocket: Also apply max_frame_size limit to decompressed data 2025-01-22 15:20:20 +01:00
compress_SUITE.erl Initial HTTP/3 implementation 2024-03-26 15:53:48 +01:00
cover.spec Use ct_run instead of rebar ct for running ct tests 2013-01-04 17:56:49 +01:00
cowboy_ct_hook.erl Refresh copyright lines 2024-01-25 11:22:54 +01:00
cowboy_test.erl Add initial http_perf_SUITE 2025-01-24 13:05:45 +01:00
decompress_SUITE.erl Initial HTTP/3 implementation 2024-03-26 15:53:48 +01:00
examples_SUITE.erl Refresh copyright lines 2024-01-25 11:22:54 +01:00
h2spec_SUITE.erl Refresh copyright lines 2024-01-25 11:22:54 +01:00
http2_SUITE.erl Correcting TransOpts in send_timeout_close tests 2025-01-23 13:29:47 +01:00
http_perf_SUITE.erl Implement dynamic socket buffer sizes 2025-02-05 14:29:58 +01:00
http_SUITE.erl Correcting TransOpts in send_timeout_close tests 2025-01-23 13:29:47 +01:00
loop_handler_SUITE.erl Initial HTTP/3 implementation 2024-03-26 15:53:48 +01:00
metrics_SUITE.erl Initial HTTP/3 implementation 2024-03-26 15:53:48 +01:00
misc_SUITE.erl Initial HTTP/3 implementation 2024-03-26 15:53:48 +01:00
plain_handler_SUITE.erl Initial HTTP/3 implementation 2024-03-26 15:53:48 +01:00
proxy_header_SUITE.erl Refresh copyright lines 2024-01-25 11:22:54 +01:00
req_SUITE.erl Initial HTTP/3 implementation 2024-03-26 15:53:48 +01:00
rest_handler_SUITE.erl Initial HTTP/3 implementation 2024-03-26 15:53:48 +01:00
rfc6585_SUITE.erl Initial HTTP/3 implementation 2024-03-26 15:53:48 +01:00
rfc7230_SUITE.erl Refresh copyright lines 2024-01-25 11:22:54 +01:00
rfc7231_SUITE.erl Initial HTTP/3 implementation 2024-03-26 15:53:48 +01:00
rfc7538_SUITE.erl Initial HTTP/3 implementation 2024-03-26 15:53:48 +01:00
rfc7540_SUITE.erl Initial HTTP/3 implementation 2024-03-26 15:53:48 +01:00
rfc8297_SUITE.erl Initial HTTP/3 implementation 2024-03-26 15:53:48 +01:00
rfc8441_SUITE.erl Initial HTTP/3 implementation 2024-03-26 15:53:48 +01:00
rfc9114_SUITE.erl Initial HTTP/3 implementation 2024-03-26 15:53:48 +01:00
rfc9204_SUITE.erl Initial HTTP/3 implementation 2024-03-26 15:53:48 +01:00
rfc9220_SUITE.erl Initial HTTP/3 implementation 2024-03-26 15:53:48 +01:00
security_SUITE.erl Add VU#421644 to the HTTP/2 CONTINUATION Flood test 2024-04-05 22:08:59 +02:00
static_handler_SUITE.erl Initial HTTP/3 implementation 2024-03-26 15:53:48 +01:00
stream_handler_SUITE.erl Initial HTTP/3 implementation 2024-03-26 15:53:48 +01:00
sys_SUITE.erl Refresh copyright lines 2024-01-25 11:22:54 +01:00
tracer_SUITE.erl Initial HTTP/3 implementation 2024-03-26 15:53:48 +01:00
ws_autobahn_SUITE.erl Switch to running autobahntestsuite via Docker 2025-01-15 13:31:19 +01:00
ws_handler_SUITE.erl Websocket: Allow setting the max_frame_size option dynamically 2025-01-16 14:47:20 +01:00
ws_perf_SUITE.erl Implement dynamic socket buffer sizes 2025-02-05 14:29:58 +01:00
ws_SUITE.erl Add WS compression test where only server sets client_max_window_bits 2025-01-23 11:39:48 +01:00