1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- [role="xpack"]
- [testenv="basic"]
- [[ilm-remove-policy]]
- === Remove policy from index API
- ++++
- <titleabbrev>Remove policy</titleabbrev>
- ++++
- Removes the assigned lifecycle policy from an index.
- ==== Request
- `POST <index>/_ilm/remove`
- ==== Description
- Removes the assigned lifecycle policy and stops managing the specified index.
- If an index pattern is specified, removes the assigned policies from all matching
- indices.
- ==== Path Parameters
- `index` (required)::
- (string) Identifier for the index.
- ==== Request Parameters
- include::{docdir}/rest-api/common-parms.asciidoc[tag=timeoutparms]
- ==== Authorization
- You must have the `manage_ilm` privileges on the indices being managed to use this API.
- For more information, see {stack-ov}/security-privileges.html[Security Privileges].
- ==== Examples
- The following example removes the assigned policy from `my_index`.
- //////////////////////////
- [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
- {
- "settings": {
- "index.lifecycle.name": "my_policy"
- }
- }
- --------------------------------------------------
- // CONSOLE
- // TEST
- //////////////////////////
- [source,js]
- --------------------------------------------------
- POST my_index/_ilm/remove
- --------------------------------------------------
- // CONSOLE
- // TEST[continued]
- If the request succeeds, you receive the following result:
- [source,console-result]
- --------------------------------------------------
- {
- "has_failures" : false,
- "failed_indexes" : []
- }
- --------------------------------------------------
|