forked from elastic/elasticsearch
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove deprecated transport settings
This is related to elastic#36652. There are a number of transport settings that were deprecated and replaced with new versions in 7.x. This commit removes them from 8.0.
- Loading branch information
1 parent
f49436d
commit 5a82602
Showing
7 changed files
with
49 additions
and
64 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
[float] | ||
[[breaking_80_http_changes]] | ||
=== HTTP changes | ||
|
||
[float] | ||
==== Removal of old HTTP settings | ||
|
||
The `http.tcp_no_delay` setting was deprecated in 7.x and has been removed in 8.0. It has been replaced by | ||
`http.tcp.no_delay`. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
[float] | ||
[[breaking_80_network_changes]] | ||
=== Network changes | ||
|
||
[float] | ||
==== Removal of old network settings | ||
|
||
The `network.tcp.connect_timeout` setting was deprecated in 7.x and has been removed in 8.0. This setting | ||
was a fallback setting for `transport.connect_timeout`. To change the default connection timeout for client | ||
connections `transport.connect_timeout` should be modified. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
[float] | ||
[[breaking_80_transport_changes]] | ||
=== Transport changes | ||
|
||
[float] | ||
==== Removal of old transport settings | ||
|
||
The following settings have been deprecated in 7.x and removed in 8.0. Each setting has a replacement | ||
setting that was introduced in 6.7. | ||
|
||
- `transport.tcp.port` replaced by `transport.port` | ||
- `transport.tcp.compress` replaced by `transport.compress` | ||
- `transport.tcp.connect_timeout` replaced by `transport.connect_timeout` | ||
- `transport.tcp_no_delay` replaced by `transport.tcp.no_delay` | ||
- `transport.profiles.profile_name.tcp_no_delay` replaced by `transport.profiles.profile_name.tcp.no_delay` | ||
- `transport.profiles.profile_name.tcp_keep_alive` replaced by `transport.profiles.profile_name.tcp.keep_alive` | ||
- `transport.profiles.profile_name.reuse_address` replaced by `transport.profiles.profile_name.tcp.reuse_address` | ||
- `transport.profiles.profile_name.send_buffer_size` replaced by `transport.profiles.profile_name.tcp.send_buffer_size` | ||
- `transport.profiles.profile_name.receive_buffer_size` replaced by `transport.profiles.profile_name.tcp.receive_buffer_size` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters