Skip to content

Commit 9efddb9

Browse files
Fix flaky tests in ML Model APIs (#782)
* Add memory threshold settings in ML Model API tests. Signed-off-by: Nathalie Jonathan <[email protected]> * Fixed response payload status property to response payload state property in upload.yaml, updated CHANGELOG.md. Signed-off-by: Nathalie Jonathan <[email protected]> --------- Signed-off-by: Nathalie Jonathan <[email protected]>
1 parent f021351 commit 9efddb9

File tree

7 files changed

+27
-1
lines changed

7 files changed

+27
-1
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,7 @@ Inspired from [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
9696
- Fixed ingest API schemas ([#766](https://github.com/opensearch-project/opensearch-api-specification/pull/766))
9797
- Fixed CAT API schemas ([#769](https://github.com/opensearch-project/opensearch-api-specification/pull/769))
9898
- Fixed core API schemas ([#777](https://github.com/opensearch-project/opensearch-api-specification/pull/777))
99+
- Fixed Memory Circuit Breaker flaky test in ML Model APIs ([#782](https://github.com/opensearch-project/opensearch-api-specification/pull/782))
99100

100101
### Changed
101102
- Changed `tasks._common:TaskInfo` and `tasks._common:TaskGroup` to be composed of a `tasks._common:TaskInfoBase` ([#683](https://github.com/opensearch-project/opensearch-api-specification/pull/683))

tests/plugins/ml/ml/models/load.yaml

+6
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@ $schema: ../../../../../json_schemas/test_story.schema.yaml
22

33
description: Test the deployment of a model using deprecated load API.
44
prologues:
5+
- path: /_cluster/settings
6+
method: PUT
7+
request:
8+
payload:
9+
persistent:
10+
plugins.ml_commons.native_memory_threshold: 100
511
- path: /_plugins/_ml/models/_register
612
id: register_model
713
method: POST

tests/plugins/ml/ml/models/predict.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ prologues:
1010
persistent:
1111
plugins.ml_commons.only_run_on_ml_node: false
1212
plugins.ml_commons.model_access_control_enabled: true
13-
plugins.ml_commons.native_memory_threshold: 99
13+
plugins.ml_commons.native_memory_threshold: 100
1414
- path: /_plugins/_ml/model_groups/_register
1515
id: create_model_group
1616
method: POST

tests/plugins/ml/ml/models/search.yaml

+6
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@ $schema: ../../../../../json_schemas/test_story.schema.yaml
33
description: Test the search of models.
44
version: '>= 2.7'
55
prologues:
6+
- path: /_cluster/settings
7+
method: PUT
8+
request:
9+
payload:
10+
persistent:
11+
plugins.ml_commons.native_memory_threshold: 100
612
- path: /_plugins/_ml/models/_register
713
id: register_model
814
method: POST

tests/plugins/ml/ml/models/undeploy.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ prologues:
99
payload:
1010
persistent:
1111
plugins.ml_commons.allow_custom_deployment_plan: true
12+
plugins.ml_commons.native_memory_threshold: 100
1213
- path: /_plugins/_ml/models/_register
1314
id: register_model
1415
method: POST

tests/plugins/ml/ml/models/unload.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ prologues:
88
payload:
99
persistent:
1010
plugins.ml_commons.allow_custom_deployment_plan: true
11+
plugins.ml_commons.native_memory_threshold: 100
1112
- path: /_plugins/_ml/models/_register
1213
id: register_model
1314
method: POST

tests/plugins/ml/ml/models/upload.yaml

+11
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
$schema: ../../../../../json_schemas/test_story.schema.yaml
22

33
description: Test the creation of models using upload API (deprecated).
4+
prologues:
5+
- path: /_cluster/settings
6+
method: PUT
7+
request:
8+
payload:
9+
persistent:
10+
plugins.ml_commons.native_memory_threshold: 100
411
epilogues:
512
- path: /_plugins/_ml/tasks/{task_id}
613
id: get_completed_task
@@ -10,6 +17,10 @@ epilogues:
1017
retry:
1118
count: 3
1219
wait: 10000
20+
response:
21+
status: 200
22+
payload:
23+
state: COMPLETED
1324
output:
1425
model_id: payload.model_id
1526
- path: /_plugins/_ml/models/{model_id}

0 commit comments

Comments
 (0)