]> git.kaiwu.me - nginx.git/commit
Changed keepalive_requests default to 1000 (ticket #2155).
authorMaxim Dounin <mdounin@mdounin.ru>
Wed, 7 Apr 2021 21:16:30 +0000 (00:16 +0300)
committerMaxim Dounin <mdounin@mdounin.ru>
Wed, 7 Apr 2021 21:16:30 +0000 (00:16 +0300)
commiteb52de83114e8d98722cd17ec8435c47956b6315
tree9e0f7e85a17787c7390a65764dc544f2ef738b26
parent497acbd0ed4b3f289bde11de207efb0abd1f6fa6
Changed keepalive_requests default to 1000 (ticket #2155).

It turns out no browsers implement HTTP/2 GOAWAY handling properly, and
large enough number of resources on a page results in failures to load
some resources.  In particular, Chrome seems to experience errors if
loading of all resources requires more than 1 connection (while it
is usually able to retry requests at least once, even with 2 connections
there are occasional failures for some reason), Safari if loading requires
more than 3 connections, and Firefox if loading requires more than 10
connections (can be configured with network.http.request.max-attempts,
defaults to 10).

It does not seem to be possible to resolve this on nginx side, even strict
limiting of maximum concurrency does not help, and loading issues seems to
be triggered by merely queueing of a request for a particular connection.
The only available mitigation seems to use higher keepalive_requests value.

The new default is 1000 and matches previously used default for
http2_max_requests.  It is expected to be enough for 99.98% of the pages
(https://httparchive.org/reports/state-of-the-web?start=latest#reqTotal)
even in Chrome.
src/http/modules/ngx_http_upstream_keepalive_module.c
src/http/ngx_http_core_module.c