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
[ML] Making indices/aliases hidden takes a while after cluster startup (#93148) (#93149)
When a cluster is upgraded from a version that didn't have hidden
indices/aliases to one that does, we make the relevant ML indices
and aliases hidden. However, the steps to do this are split over
5 actions that run sequentially, so the work might take a second or
two after the upgraded cluster starts up. This can cause the test
that asserts on the final state to fail if it runs very quickly
after the upgraded cluster startup. The solution is to retry the
test for a few seconds to give a chance for all the upgrade actions
to complete.
Relates #93062
Copy file name to clipboardExpand all lines: x-pack/qa/full-cluster-restart/src/test/java/org/elasticsearch/xpack/restart/MlHiddenIndicesFullClusterRestartIT.java
+34-27Lines changed: 34 additions & 27 deletions
Original file line number
Diff line number
Diff line change
@@ -102,34 +102,41 @@ public void testMlIndicesBecomeHidden() throws Exception {
0 commit comments