Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added ML Model APIs #733

Open
wants to merge 23 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 18 commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
2994879
Added test for GET /_settings/{name}. (#727)
dblock Dec 12, 2024
14cc701
Added ML Model APIs (get, search, update model) to the spec along wit…
nathaliellenaa Dec 13, 2024
a9712ff
Added ML Model APIs (undeploy, unload), moved test for search model t…
nathaliellenaa Dec 17, 2024
d2710c7
Disambiguate snapshot schema naming (#730)
Xtansia Dec 13, 2024
e2b2879
Added support for using a certificate and key. (#731)
dblock Dec 16, 2024
d989004
Fixed /_search/scroll/{scroll_id}, missing search tests. (#732)
dblock Dec 17, 2024
58a2451
Added tests for /_template/{name}. (#736)
dblock Dec 17, 2024
3b07554
Added tests for /_validate/query. (#739)
dblock Dec 17, 2024
55ad956
Fixed lint and directory path error.
nathaliellenaa Dec 17, 2024
78cf49d
Added ML Model APIs (load, upload, create metadata).
nathaliellenaa Dec 17, 2024
9a52516
Added ML Model APIs (predict) and updated the test settings for metad…
nathaliellenaa Dec 18, 2024
c29b8d3
Merge branch 'main' into add-ml-models-api
nathaliellenaa Dec 18, 2024
789ab69
Fixed lint errors in predict.yaml, moved setup to prologues and teard…
nathaliellenaa Dec 19, 2024
8e44ea2
Merge branch 'main' into add-ml-models-api
nathaliellenaa Dec 19, 2024
382477b
Added ML Model APIs (chunk, register meta), updated CHANGELOG and tes…
nathaliellenaa Dec 19, 2024
33aab02
Added ML Model APIs (upload chunk), moved test for deprecated chunk u…
nathaliellenaa Dec 20, 2024
5b083a0
Applied suggestions from code review.
nathaliellenaa Dec 27, 2024
6f5e928
Merge branch 'main' into add-ml-models-api
nathaliellenaa Dec 27, 2024
874ae38
Adjust Vale rules to ignore links (#753)
Tokesh Dec 27, 2024
26e3859
Update cat namespace descriptions (#751)
Naarcha-AWS Dec 31, 2024
6243151
Merged main and resolve conflicts.
nathaliellenaa Dec 31, 2024
8eadec0
Merge branch 'main' into add-ml-models-api
nathaliellenaa Dec 31, 2024
1e2619d
Moved test models folder to tests/plugins/ml/ml/models, removed dupli…
nathaliellenaa Dec 31, 2024
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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ Inspired from [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
- Added support for combining output variables ([#737](https://github.com/opensearch-project/opensearch-api-specification/pull/737))
- Added 404 response to `/_search/scroll` ([#749](https://github.com/opensearch-project/opensearch-api-specification/pull/749))
- Added `node_failures` to `DELETE /_search/scroll` and `DELETE /_search/scroll/{scroll_id}` ([#749](https://github.com/opensearch-project/opensearch-api-specification/pull/749))
- Added `GET /_plugins/_ml/models/{model_id}`, `POST /_plugins/_ml/models/_search`, `POST /_plugins/_ml/models/_unload`, `_undeploy`, `_upload`, `meta`, `_register_meta`, `POST /_plugins/_ml/models/{model_id}/_load`, `_predict`, `_unload`, `chunk/{chunk_number}`, `upload_chunk/{chunk_number}`, and `PUT /_plugins/_ml/models/{model_id}` ([#733](https://github.com/opensearch-project/opensearch-api-specification/pull/733))

### Removed
- Removed unsupported `_common.mapping:SourceField`'s `mode` field and associated `_common.mapping:SourceFieldMode` enum ([#652](https://github.com/opensearch-project/opensearch-api-specification/pull/652))
Expand Down
Loading
Loading