1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- [role="xpack"]
- [testenv="basic"]
- [[ilm-stop]]
- === Stop {ILM} API
- ++++
- <titleabbrev>Stop {ILM}</titleabbrev>
- ++++
- Stop the {ILM} plugin.
- ==== Request
- `POST /_ilm/stop`
- ==== Description
- Halts all lifecycle management operations and stops the {ILM} plugin. This is
- useful when you are performing maintenance on the cluster and need to prevent
- {ILM} from performing any actions on your indices.
- The API returns as soon as the stop request has been acknowledged, but the
- plugin might continue to run until in-progress operations complete and the plugin
- can be safely stopped. Use the <<ilm-get-status, Get ILM Status>> API to see
- if {ILM} is running.
- ==== Request Parameters
- include::{docdir}/rest-api/timeoutparms.asciidoc[]
- ==== Authorization
- include::ilm-cluster-mgt-privilege.asciidoc[]
- ==== Examples
- The following example stops the ILM plugin.
- //////////////////////////
- [source,js]
- --------------------------------------------------
- PUT _ilm/policy/my_policy
- {
- "policy": {
- "phases": {
- "warm": {
- "min_age": "10d",
- "actions": {
- "forcemerge": {
- "max_num_segments": 1
- }
- }
- },
- "delete": {
- "min_age": "30d",
- "actions": {
- "delete": {}
- }
- }
- }
- }
- }
- PUT my_index
- --------------------------------------------------
- // CONSOLE
- // TEST
- //////////////////////////
- [source,js]
- --------------------------------------------------
- POST _ilm/stop
- --------------------------------------------------
- // CONSOLE
- // TEST[continued]
- If the request does not encounter errors, you receive the following result:
- [source,js]
- --------------------------------------------------
- {
- "acknowledged": true
- }
- --------------------------------------------------
- // CONSOLE
- // TESTRESPONSE
- //////////////////////////
- [source,js]
- --------------------------------------------------
- POST _ilm/start
- --------------------------------------------------
- // CONSOLE
- // TEST[continued]
- //////////////////////////
|