Opened 4 years ago

Closed 4 years ago

Last modified 20 months ago

#2033 closed enhancement (wontfix)

Error page directive forces upstream's keepalive to be closed

Reported by: giovani.rinaldi.azion.com@… Owned by:
Priority: minor Milestone:
Component: nginx-module Version: 1.16.x
Keywords: upstream keepalive error_page Cc: giovani.rinaldi.azion.com@…
uname -a: Linux hostname 3.10.0-1062.18.1.el7.x86_64 #1 SMP Tue Mar 17 23:49:17 UTC 2020 x86_64 x86_64 x86_64 GNU/Linux
nginx -V: nginx version: nginx/1.16.1
built by gcc 4.8.5 20150623 (Red Hat 4.8.5-39) (GCC)
configure arguments: --with-debug

Description

When using an upstream for serving a given location which has an error page configured (such as with code 302), the proxy module is not able to intercept the intermediary response headers and thus will not mark the utilised upstream server with keepalive.

For example, given the 3 nginx's servers "proxy", "redirect" and "origin", the "proxy" server uses an upstream configured with keepalive that resolves to the "redirect" server IP/port. A request to the "proxy" server gets passed, via upstream, to the "redirect" server, which only answers the fixed status code 302 with a location containing an URL to the "origin" server. Then, the error_page directive in the "proxy" server gets triggered and executes a named location which, in turn, will do a proxy pass to the "origin" server to obtain the object indicated by the "redirect" server. A minimal nginx.conf, which reproduces this scenario, is attached to this ticket.

By verifying nginx's error.log in debug, it's visible that keepalive is not doing the "saving connection" part when dealing with the intermediary (redirect with 302 + location) response. See file error.log.errorpage.nokeepalive attached.

If the error_page is disabled (by simply commenting the error_page in the minimal nginx.conf attached), the 302 answer is returned directly (instead of entering the named location and requesting "origin" server) and the upstream's keepalive works as intended, as can be seen in the attached file error.log.noerrorpage.keepalive.

As a workaround, the patch (attached as file set_keepalive_status_moved.patch) fixed the issue by allowing the function ngx_http_proxy_process_header in ngx_http_proxy_module to verify if such response allows upstream's keepalive to be enabled. The attached file error.log.errorpage.keepalive.patched demonstrates the full scenario working properly with keepalive + error_page redirection.

Further investigation into the behaviour that does not use using the error_page directive indicates that keepalive is enabled by the function ngx_http_proxy_copy_filter, but such function is never called when error_page is active (presumably because the copy filter will only be called when a final response is ready to be sent downstream, and the 302 is only the intermediary response).

As mentioned, said patch fixes such issue, but some questions remain:

  • Is it the correct approach to avoid this type of keepalive from being shut down?
  • If so, which other return codes could be included? Maybe externalising this as a directive to be tested/used as needed, such as it's done with e.g. proxy_next_upstream.

I haven't tested this issue with the current nginx versions such as 1.18/1.19, though I overlooked the mentioned functions' source code briefly and could not see any major change in their behaviour, but I could gladly run further tests if needed.

P.S.: In order for the attached scenarios to work properly, every host utilised ("example.com", "redirect.com" and "origin.com") must be configured locally and must resolve to the localhost IP in the recursive resolver of the host machine.

Attachments (5)

nginx.conf (1.8 KB ) - added by giovani.rinaldi.azion.com@… 4 years ago.
Minimal nginx.conf
set_keepalive_status_moved.patch (711 bytes ) - added by giovani.rinaldi.azion.com@… 4 years ago.
Suggested patch
error.log.errorpage.nokeepalive (35.5 KB ) - added by giovani.rinaldi.azion.com@… 4 years ago.
Error.log with debug level demonstrating that keepalive's connection is not "saved" during upstream's free keepalive peer
error.log.noerrorpage.keepalive (19.3 KB ) - added by giovani.rinaldi.azion.com@… 4 years ago.
Error.log with debug level demonstrating the connection saved as keepalive when error_page is not intercepting the redirect
error.log.errorpage.keepalive.patched (34.1 KB ) - added by giovani.rinaldi.azion.com@… 4 years ago.
Error.log with debug level demonstrating that keepalive's connection is saved and the request executing the redirection via error_page directive after suggested patch is applied

Download all attachments as: .zip

Change History (8)

by giovani.rinaldi.azion.com@…, 4 years ago

Attachment: nginx.conf added

Minimal nginx.conf

by giovani.rinaldi.azion.com@…, 4 years ago

Suggested patch

by giovani.rinaldi.azion.com@…, 4 years ago

Error.log with debug level demonstrating that keepalive's connection is not "saved" during upstream's free keepalive peer

by giovani.rinaldi.azion.com@…, 4 years ago

Error.log with debug level demonstrating the connection saved as keepalive when error_page is not intercepting the redirect

by giovani.rinaldi.azion.com@…, 4 years ago

Error.log with debug level demonstrating that keepalive's connection is saved and the request executing the redirection via error_page directive after suggested patch is applied

comment:1 by Maxim Dounin, 4 years ago

Resolution: wontfix
Status: newclosed
Type: defectenhancement

When nginx is configured to intercept errors (via the error_page and proxy_intercept_errors directives), it does not try to read the response body if the response is an error to be intercepted. As such, the connection cannot be kept alive as long as the response body is not empty: non-empty body will interfere with the next response, so nginx has either read it or close the connection.

While keeping such connections alive might be beneficial in some cases (notably when reading the response body is known to be cheaper than establishing another connection), this is not something supported now. Moreover, introducing such support is not trivial: the upstream code needs to be changed to read the response body and drop it before the error is intercepted.

If you want nginx to keep connections alive while intercepting errors, the only option currently available is to make sure errors to be intercepted have empty bodies.

Note that the patch you are suggesting is not correct. It tries to keep alive connections without reading the response bodies, so there is a good chance the unread response body will be interpreted as a response to the next request in the connection, either causing an error or even allowing the response body to be interpreted as a response to a different request.

comment:2 by Maxim Dounin, 3 years ago

See also #2192.

comment:3 by Maxim Dounin, 20 months ago

See also #2388.

Note: See TracTickets for help on using tickets.