File tree 2 files changed +21
-0
lines changed
2 files changed +21
-0
lines changed Original file line number Diff line number Diff line change @@ -25,6 +25,7 @@ See also <<release-highlights>> and <<es-release-notes>>.
25
25
* <<breaking_70_snapshotstats_changes>>
26
26
* <<breaking_70_restclient_changes>>
27
27
* <<breaking_70_low_level_restclient_changes>>
28
+ * <<breaking_70_node_start>>
28
29
29
30
[float]
30
31
=== Indices created before 7.0
@@ -58,3 +59,4 @@ include::migrate_7_0/scripting.asciidoc[]
58
59
include::migrate_7_0/snapshotstats.asciidoc[]
59
60
include::migrate_7_0/restclient.asciidoc[]
60
61
include::migrate_7_0/low_level_restclient.asciidoc[]
62
+ include::migrate_7_0/node_start.asciidoc[]
Original file line number Diff line number Diff line change
1
+ [float]
2
+ [[breaking_70_node_start]]
3
+ === Node start up
4
+
5
+ [float]
6
+ ==== Node start up detects and fails on obsolete indices
7
+ To avoid importing obsolete dangling indices, node start up will fail in following two situations:
8
+
9
+ * Starting up a non-data node that has shard data (e.g. dedicated master node or coordinating-only node)
10
+ * Starting up a non-data, non-master node that has index metadata.
11
+
12
+ This situation should only occur if the settings node.data or node.master have been changed. Following are the primary
13
+ situations to be aware of:
14
+
15
+ * A node previously configured as node.data=true and node.master=true is changed to node.data=false
16
+ * A node previously configured as node.data=false and node.master=true is changed to node.master=false
17
+ * A node previously configured as node.data=true and node.master=false is changed to node.data=false and node.master=true
18
+
19
+ Beware that such changes done prior to the 7.0 upgrade could prevent starting nodes.
You can’t perform that action at this time.
0 commit comments