Skip to content

Commit a431cfd

Browse files
committed
Fix broken anchors (#119802)
(cherry picked from commit d37e1bd)
1 parent c71c008 commit a431cfd

File tree

7 files changed

+480
-18
lines changed

7 files changed

+480
-18
lines changed

docs/reference/modules/discovery/publishing.asciidoc

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,3 +58,16 @@ speed of the storage on each master-eligible node, as well as the reliability
5858
and latency of the network interconnections between all nodes in the cluster.
5959
You must therefore ensure that the storage and networking available to the
6060
nodes in your cluster are good enough to meet your performance goals.
61+
62+
[[dangling-index]]
63+
==== Dangling indices
64+
65+
When a node joins the cluster, if it finds any shards stored in its local
66+
data directory that do not already exist in the cluster state, it will consider
67+
those shards to belong to a "dangling" index. You can list, import or
68+
delete dangling indices using the <<dangling-indices-api,Dangling indices
69+
API>>.
70+
71+
NOTE: The API cannot offer any guarantees as to whether the imported data
72+
truly represents the latest state of the data when the index was still part
73+
of the cluster.

docs/reference/modules/gateway.asciidoc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
[[modules-gateway]]
22
=== Local gateway settings
33

4+
[[dangling-indices]]
45
The local gateway stores the cluster state and shard data across full
56
cluster restarts.
67

docs/reference/modules/network.asciidoc

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -286,3 +286,22 @@ include::remote-cluster-network.asciidoc[]
286286
include::network/tracers.asciidoc[]
287287

288288
include::network/threading.asciidoc[]
289+
290+
[[tcp-readiness-port]]
291+
==== TCP readiness port
292+
293+
preview::[]
294+
295+
If configured, a node can open a TCP port when the node is in a ready state. A node is deemed
296+
ready when it has successfully joined a cluster. In a single node configuration, the node is
297+
said to be ready, when it's able to accept requests.
298+
299+
To enable the readiness TCP port, use the `readiness.port` setting. The readiness service will bind to
300+
all host addresses.
301+
302+
If the node leaves the cluster, or the <<put-shutdown,Shutdown API>> is used to mark the node
303+
for shutdown, the readiness port is immediately closed.
304+
305+
A successful connection to the readiness TCP port signals that the {es} node is ready. When a client
306+
connects to the readiness port, the server simply terminates the socket connection. No data is sent back
307+
to the client. If a client cannot connect to the readiness port, the node is not ready.

docs/reference/modules/node.asciidoc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,8 @@ set `node.roles`, the node is assigned the following roles:
3737
* `remote_cluster_client`
3838
* `transform`
3939

40+
[[coordinating-only-node]]If you leave `node.roles` unset, then the node is considered to be a <<coordinating-only-node-role,coordinating only node>>.
41+
4042
[IMPORTANT]
4143
====
4244
If you set `node.roles`, ensure you specify every node role your cluster needs.

0 commit comments

Comments
 (0)