Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix links to Connection Timeout and Timeout Configuration #3129

Merged
merged 1 commit into from
Apr 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/modules/ROOT/pages/faq.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ If, on the client side, you observe `Connection prematurely closed BEFORE respon
* Check for any proxies and load balancers.
** Do they have some kind of idle timeout configuration (the connection is closed when there is no incoming data for a certain period of time)?
** Do they silently drop the idle connections without sending any signal?
In order to verify whether this might be the issue, you can enable the TCP keep-alive as described in the section xref:http-server.adoc#http-server-connection-timeout[Connection Timeout].
In order to verify whether this might be the issue, you can enable the TCP keep-alive as described in the section xref:http-client.adoc#connection-timeout[Connection Timeout].
Issues related to TCP keep-alive configuration on various load balancers were reported in the past.
*** https://github.com/reactor/reactor-netty/issues/764#issuecomment-1011373248
*** https://github.com/reactor/reactor-netty/issues/1510
Expand All @@ -130,5 +130,5 @@ Issues related to TCP keep-alive configuration on various load balancers were re
*** rate limit configuration
** Is the target server in a shutting down state?

Consider checking xref:http-server.adoc#http-server-timeout-configuration[Timeout Configuration]. The section describes various timeout configuration options that are available for Reactor Netty clients.
Consider checking xref:http-client.adoc#timeout-configuration[Timeout Configuration]. The section describes various timeout configuration options that are available for Reactor Netty clients.
Configuring a proper timeout may improve or solve issues in the communication process.
2 changes: 1 addition & 1 deletion docs/modules/ROOT/pages/http-client.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -594,7 +594,7 @@ The configuration options can be grouped as follows:
* xref:http-client.adoc#connection-pool-timeout[Connection Pool Timeout]
* xref:http-client.adoc#http-client-timeout[HttpClient Timeout]
** xref:http-client.adoc#response-timeout[Response Timeout]
** xref:http-server.adoc#http-server-connection-timeout[Connection Timeout]
** xref:http-client.adoc#connection-timeout[Connection Timeout]
** xref:http-client.adoc#ssl-tls-timeout[SSL/TLS Timeout]
** xref:http-client.adoc#proxy-timeout[Proxy Timeout]
** xref:http-client.adoc#dns-timeout[Host Name Resolution Timeout]
Expand Down
Loading