Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,13 @@ setup:
xpack.ml.close_job:
job_id: mixed-cluster-job

# Wait for indices to be fully allocated before
# killing the node
- do:
cluster.health:
index: [".ml-state", ".ml-anomalies-shared"]
wait_for_status: green

---
"Test get job with rules":

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,13 @@
job_id: old-cluster-job
- match: { count: 1 }

# Wait for indices to be fully allocated before
# killing the node
- do:
cluster.health:
index: [".ml-state", ".ml-anomalies-shared"]
wait_for_status: green

---
"Put job on the old cluster with the default model memory limit and post some data":
- do:
Expand Down Expand Up @@ -96,6 +103,13 @@
job_id: no-model-memory-limit-job
- match: { count: 201 }

# Wait for indices to be fully allocated before
# killing the node
- do:
cluster.health:
index: [".ml-state", ".ml-anomalies-shared"]
wait_for_status: green

---
"Put job with empty strings in the configuration":
- do:
Expand Down