Manually moves an index into the specified step and executes that step Added in 6.6.0
Path parameters
-
The name of the index whose lifecycle step is to change
Body
-
Additional properties are allowed.
-
Additional properties are allowed.
POST /_ilm/move/{index}
curl \
-X POST http://api.example.com/_ilm/move/{index} \
-H "Content-Type: application/json" \
-d '"{\n \"current_step\": {\n \"phase\": \"new\",\n \"action\": \"complete\",\n \"name\": \"complete\"\n },\n \"next_step\": {\n \"phase\": \"warm\",\n \"action\": \"forcemerge\",\n \"name\": \"forcemerge\"\n }\n}"'
Request example
{
"current_step": {
"phase": "new",
"action": "complete",
"name": "complete"
},
"next_step": {
"phase": "warm",
"action": "forcemerge",
"name": "forcemerge"
}
}
Response examples (200)
{
"acknowledged": true
}