Regroup APIs
Signed-off-by: Naarcha-AWS <naarcha@amazon.com>
This commit is contained in:
parent
8bcad52409
commit
07e7fc4478
|
@ -115,27 +115,121 @@ The API returns information on the model, the algorithm used, and the content fo
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
## Get task information
|
## Search model
|
||||||
|
|
||||||
|
Use this command to search models you're already created.
|
||||||
|
|
||||||
You can retrieve information about a task using the task_id.
|
|
||||||
|
|
||||||
```json
|
```json
|
||||||
GET /_plugins/_ml/tasks/<task_id>
|
POST /_plugins/_ml/models/_search
|
||||||
|
{query}
|
||||||
```
|
```
|
||||||
|
|
||||||
The response includes information about the task.
|
### Example 1: Query all models
|
||||||
|
|
||||||
|
```json
|
||||||
|
POST /_plugins/_ml/models/_search
|
||||||
|
{
|
||||||
|
"query": {
|
||||||
|
"match_all": {}
|
||||||
|
},
|
||||||
|
"size": 1000
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
### Example 2: Query models with algorithm "FIT_RCF"
|
||||||
|
|
||||||
|
```json
|
||||||
|
POST /_plugins/_ml/models/_search
|
||||||
|
{
|
||||||
|
"query": {
|
||||||
|
"term": {
|
||||||
|
"algorithm": {
|
||||||
|
"value": "FIT_RCF"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
### Response
|
||||||
|
|
||||||
```json
|
```json
|
||||||
{
|
{
|
||||||
"model_id" : "l7lamX8BO5w8y8Ra2oty",
|
"took" : 8,
|
||||||
"task_type" : "TRAINING",
|
"timed_out" : false,
|
||||||
"function_name" : "KMEANS",
|
"_shards" : {
|
||||||
"state" : "COMPLETED",
|
"total" : 1,
|
||||||
"input_type" : "SEARCH_QUERY",
|
"successful" : 1,
|
||||||
"worker_node" : "54xOe0w8Qjyze00UuLDfdA",
|
"skipped" : 0,
|
||||||
"create_time" : 1647545342556,
|
"failed" : 0
|
||||||
"last_update_time" : 1647545342587,
|
},
|
||||||
"is_async" : true
|
"hits" : {
|
||||||
|
"total" : {
|
||||||
|
"value" : 2,
|
||||||
|
"relation" : "eq"
|
||||||
|
},
|
||||||
|
"max_score" : 2.4159138,
|
||||||
|
"hits" : [
|
||||||
|
{
|
||||||
|
"_index" : ".plugins-ml-model",
|
||||||
|
"_type" : "_doc",
|
||||||
|
"_id" : "-QkKJX8BvytMh9aUeuLD",
|
||||||
|
"_version" : 1,
|
||||||
|
"_seq_no" : 12,
|
||||||
|
"_primary_term" : 15,
|
||||||
|
"_score" : 2.4159138,
|
||||||
|
"_source" : {
|
||||||
|
"name" : "FIT_RCF",
|
||||||
|
"version" : 1,
|
||||||
|
"content" : "xxx",
|
||||||
|
"algorithm" : "FIT_RCF"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"_index" : ".plugins-ml-model",
|
||||||
|
"_type" : "_doc",
|
||||||
|
"_id" : "OxkvHn8BNJ65KnIpck8x",
|
||||||
|
"_version" : 1,
|
||||||
|
"_seq_no" : 2,
|
||||||
|
"_primary_term" : 8,
|
||||||
|
"_score" : 2.4159138,
|
||||||
|
"_source" : {
|
||||||
|
"name" : "FIT_RCF",
|
||||||
|
"version" : 1,
|
||||||
|
"content" : "xxx",
|
||||||
|
"algorithm" : "FIT_RCF"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
## Delete model
|
||||||
|
|
||||||
|
Deletes a model based on the model_id
|
||||||
|
|
||||||
|
```json
|
||||||
|
DELETE /_plugins/_ml/models/<model_id>
|
||||||
|
```
|
||||||
|
|
||||||
|
The API returns the following:
|
||||||
|
|
||||||
|
```json
|
||||||
|
{
|
||||||
|
"_index" : ".plugins-ml-model",
|
||||||
|
"_type" : "_doc",
|
||||||
|
"_id" : "MzcIJX8BA7mbufL6DOwl",
|
||||||
|
"_version" : 2,
|
||||||
|
"result" : "deleted",
|
||||||
|
"_shards" : {
|
||||||
|
"total" : 2,
|
||||||
|
"successful" : 2,
|
||||||
|
"failed" : 0
|
||||||
|
},
|
||||||
|
"_seq_no" : 27,
|
||||||
|
"_primary_term" : 18
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
|
@ -434,98 +528,30 @@ POST /_plugins/_ml/_train_predict/kmeans
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
## Search model
|
## Get task information
|
||||||
|
|
||||||
Use this command to search models you're already created.
|
|
||||||
|
|
||||||
|
You can retrieve information about a task using the task_id.
|
||||||
|
|
||||||
```json
|
```json
|
||||||
POST /_plugins/_ml/models/_search
|
GET /_plugins/_ml/tasks/<task_id>
|
||||||
{query}
|
|
||||||
```
|
```
|
||||||
|
|
||||||
|
The response includes information about the task.
|
||||||
### Example 1: Query all models
|
|
||||||
|
|
||||||
```json
|
```json
|
||||||
POST /_plugins/_ml/models/_search
|
|
||||||
{
|
{
|
||||||
"query": {
|
"model_id" : "l7lamX8BO5w8y8Ra2oty",
|
||||||
"match_all": {}
|
"task_type" : "TRAINING",
|
||||||
},
|
"function_name" : "KMEANS",
|
||||||
"size": 1000
|
"state" : "COMPLETED",
|
||||||
|
"input_type" : "SEARCH_QUERY",
|
||||||
|
"worker_node" : "54xOe0w8Qjyze00UuLDfdA",
|
||||||
|
"create_time" : 1647545342556,
|
||||||
|
"last_update_time" : 1647545342587,
|
||||||
|
"is_async" : true
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
### Example 2: Query models with algorithm "FIT_RCF"
|
|
||||||
|
|
||||||
```json
|
|
||||||
POST /_plugins/_ml/models/_search
|
|
||||||
{
|
|
||||||
"query": {
|
|
||||||
"term": {
|
|
||||||
"algorithm": {
|
|
||||||
"value": "FIT_RCF"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
### Response
|
|
||||||
|
|
||||||
```json
|
|
||||||
{
|
|
||||||
"took" : 8,
|
|
||||||
"timed_out" : false,
|
|
||||||
"_shards" : {
|
|
||||||
"total" : 1,
|
|
||||||
"successful" : 1,
|
|
||||||
"skipped" : 0,
|
|
||||||
"failed" : 0
|
|
||||||
},
|
|
||||||
"hits" : {
|
|
||||||
"total" : {
|
|
||||||
"value" : 2,
|
|
||||||
"relation" : "eq"
|
|
||||||
},
|
|
||||||
"max_score" : 2.4159138,
|
|
||||||
"hits" : [
|
|
||||||
{
|
|
||||||
"_index" : ".plugins-ml-model",
|
|
||||||
"_type" : "_doc",
|
|
||||||
"_id" : "-QkKJX8BvytMh9aUeuLD",
|
|
||||||
"_version" : 1,
|
|
||||||
"_seq_no" : 12,
|
|
||||||
"_primary_term" : 15,
|
|
||||||
"_score" : 2.4159138,
|
|
||||||
"_source" : {
|
|
||||||
"name" : "FIT_RCF",
|
|
||||||
"version" : 1,
|
|
||||||
"content" : "xxx",
|
|
||||||
"algorithm" : "FIT_RCF"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"_index" : ".plugins-ml-model",
|
|
||||||
"_type" : "_doc",
|
|
||||||
"_id" : "OxkvHn8BNJ65KnIpck8x",
|
|
||||||
"_version" : 1,
|
|
||||||
"_seq_no" : 2,
|
|
||||||
"_primary_term" : 8,
|
|
||||||
"_score" : 2.4159138,
|
|
||||||
"_source" : {
|
|
||||||
"name" : "FIT_RCF",
|
|
||||||
"version" : 1,
|
|
||||||
"content" : "xxx",
|
|
||||||
"algorithm" : "FIT_RCF"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
## Search task
|
## Search task
|
||||||
|
|
||||||
Search tasks based on parameters indicated in the request body.
|
Search tasks based on parameters indicated in the request body.
|
||||||
|
@ -617,6 +643,33 @@ GET /_plugins/_ml/tasks/_search
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
|
## Delete task
|
||||||
|
|
||||||
|
Delete a task based on the task_id.
|
||||||
|
|
||||||
|
```json
|
||||||
|
DELETE /_plugins/_ml/tasks/{task_id}
|
||||||
|
```
|
||||||
|
|
||||||
|
The API returns the following:
|
||||||
|
|
||||||
|
```json
|
||||||
|
{
|
||||||
|
"_index" : ".plugins-ml-task",
|
||||||
|
"_type" : "_doc",
|
||||||
|
"_id" : "xQRYLX8BydmmU1x6nuD3",
|
||||||
|
"_version" : 4,
|
||||||
|
"result" : "deleted",
|
||||||
|
"_shards" : {
|
||||||
|
"total" : 2,
|
||||||
|
"successful" : 2,
|
||||||
|
"failed" : 0
|
||||||
|
},
|
||||||
|
"_seq_no" : 42,
|
||||||
|
"_primary_term" : 7
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
## Stats
|
## Stats
|
||||||
|
|
||||||
Get statistics related to the number of tasks.
|
Get statistics related to the number of tasks.
|
||||||
|
@ -680,60 +733,6 @@ GET /_plugins/_ml/stats
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
## Delete task
|
|
||||||
|
|
||||||
Delete a task based on the task_id.
|
|
||||||
|
|
||||||
```json
|
|
||||||
DELETE /_plugins/_ml/tasks/{task_id}
|
|
||||||
```
|
|
||||||
|
|
||||||
The API returns the following:
|
|
||||||
|
|
||||||
```json
|
|
||||||
{
|
|
||||||
"_index" : ".plugins-ml-task",
|
|
||||||
"_type" : "_doc",
|
|
||||||
"_id" : "xQRYLX8BydmmU1x6nuD3",
|
|
||||||
"_version" : 4,
|
|
||||||
"result" : "deleted",
|
|
||||||
"_shards" : {
|
|
||||||
"total" : 2,
|
|
||||||
"successful" : 2,
|
|
||||||
"failed" : 0
|
|
||||||
},
|
|
||||||
"_seq_no" : 42,
|
|
||||||
"_primary_term" : 7
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
## Delete model
|
|
||||||
|
|
||||||
Deletes a model based on the model_id
|
|
||||||
|
|
||||||
```json
|
|
||||||
DELETE /_plugins/_ml/models/<model_id>
|
|
||||||
```
|
|
||||||
|
|
||||||
The API returns the following:
|
|
||||||
|
|
||||||
```json
|
|
||||||
{
|
|
||||||
"_index" : ".plugins-ml-model",
|
|
||||||
"_type" : "_doc",
|
|
||||||
"_id" : "MzcIJX8BA7mbufL6DOwl",
|
|
||||||
"_version" : 2,
|
|
||||||
"result" : "deleted",
|
|
||||||
"_shards" : {
|
|
||||||
"total" : 2,
|
|
||||||
"successful" : 2,
|
|
||||||
"failed" : 0
|
|
||||||
},
|
|
||||||
"_seq_no" : 27,
|
|
||||||
"_primary_term" : 18
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue