You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This status message indicates a node has exceeded the configured low watermark and no shard will be allocated to this node.
128
+
The following status message indicates that a node has exceeded the configured low watermark, and no shard will be allocated to this node.
129
129
130
130
[source,yaml]
131
131
----
@@ -142,7 +142,7 @@ status:
142
142
upgradeStatus: {}
143
143
----
144
144
145
-
This status message indicates a node has exceeded the configured high watermark and shards will be relocated to other nodes.
145
+
The following status message indicates that a node has exceeded the configured high watermark, and shards will be relocated to other nodes.
146
146
147
147
[source,yaml]
148
148
----
@@ -159,7 +159,7 @@ status:
159
159
upgradeStatus: {}
160
160
----
161
161
162
-
This status message indicates the log store node selector in the CR does not match any nodes in the cluster:
162
+
The following status message indicates that the log store node selector in the CR does not match any nodes in the cluster:
163
163
164
164
[source,yaml]
165
165
----
@@ -173,7 +173,7 @@ status:
173
173
type: Unschedulable
174
174
----
175
175
176
-
This status message indicates that the log store CR uses a non-existent PVC.
176
+
The following status message indicates that the log store CR uses a non-existent persistent volume claim (PVC).
177
177
178
178
[source,yaml]
179
179
----
@@ -187,7 +187,7 @@ status:
187
187
type: Unschedulable
188
188
----
189
189
190
-
This status message indicates that your log store cluster does not have enough nodes to support your log store redundancy policy.
190
+
The following status message indicates that your log store cluster does not have enough nodes to support the redundancy policy.
191
191
192
192
[source,yaml]
193
193
----
@@ -217,3 +217,30 @@ status:
217
217
status: 'True'
218
218
type: InvalidMasters
219
219
----
220
+
221
+
222
+
The following status message indicates that Elasticsearch storage does not support the change you tried to make.
223
+
224
+
For example:
225
+
[source,yaml]
226
+
----
227
+
status:
228
+
clusterHealth: green
229
+
conditions:
230
+
- lastTransitionTime: "2021-05-07T01:05:13Z"
231
+
message: Changing the storage structure for a custom resource is not supported
232
+
reason: StorageStructureChangeIgnored
233
+
status: 'True'
234
+
type: StorageStructureChangeIgnored
235
+
----
236
+
237
+
The `reason` and `type` fields specify the type of unsupported change:
238
+
239
+
`StorageClassNameChangeIgnored`:: Unsupported change to the storage class name.
240
+
`StorageSizeChangeIgnored`:: Unsupported change the storage size.
241
+
`StorageStructureChangeIgnored`:: Unsupported change between ephemeral and persistent storage structures.
242
+
+
243
+
[IMPORTANT]
244
+
====
245
+
If you try to configure the `ClusterLogging` custom resource (CR) to switch from ephemeral to persistent storage, the OpenShift Elasticsearch Operator creates a persistent volume claim (PVC) but does not create a persistent volume (PV). To clear the `StorageStructureChangeIgnored` status, you must revert the change to the `ClusterLogging` CR and delete the PVC.
0 commit comments