Added the API definition for `_optimize`

This commit is contained in:
Karel Minarik 2013-05-27 16:57:31 +02:00
parent 4e4cdaff2a
commit 7849fe12ce
1 changed files with 19 additions and 3 deletions

View File

@ -1,30 +1,46 @@
{
"indices.optimize": {
"documentation": "",
"documentation": "http://www.elasticsearch.org/guide/reference/api/admin-indices-optimize/",
"methods": ["POST", "GET"],
"url": {
"path": "/_optimize",
"paths": ["/_optimize", "/{index}/_optimize"],
"parts": {
"index": {
"type" : "list",
"required" : true,
"description" : "A comma-separated list of index names; use `_all` or empty string to perform the operation on all indices"
}
},
"params": {
"flush": {
"type" : "boolean",
"description" : "Specify whether the index should be flushed after performing the operation (default: true)"
},
"ignore_indices": {
},
"index": {
"type" : "enum",
"options" : ["none","missing"],
"default" : "none",
"description" : "When performed on multiple indices, allows to ignore `missing` ones"
},
"max_num_segments": {
"type" : "number",
"description" : "The number of segments the index should be merged into (default: dynamic)"
},
"only_expunge_deletes": {
"type" : "boolean",
"description" : "Specify whether the operation should only expunge deleted documents"
},
"operation_threading": {
"description" : "TODO: ?"
},
"refresh": {
"type" : "boolean",
"description" : "Specify whether the index should be refreshed after performing the operation (default: true)"
},
"wait_for_merge": {
"type" : "boolean",
"description" : "Specify whether the request should block until the merge process is finished (default: true)"
}
}
},