Put snapshot lifecycle policy APIedit

Creates or updates a snapshot lifecycle policy.

Requestedit

PUT /_slm/policy/<snapshot-lifecycle-policy-id>

Prerequisitesedit

If you use Elasticsearch security features, you must have:

Snapshot lifecycle management operations are executed as the user that last created or updated the policy.

For more information, see Security privileges.

Descriptionedit

Use the put snapshot lifecycle policy API to create or update a snapshot lifecycle policy.

If the policy already exists, this request increments the policy’s version. Only the latest version of the policy is stored.

Path parametersedit

<snapshot-lifecycle-policy-id>
(Required, string) ID for the snapshot lifecycle policy you want to create or update.

Query parametersedit

timeout
(Optional, time units) Specifies the period of time to wait for a response. If no response is received before the timeout expires, the request fails and returns an error. Defaults to 30s.
master_timeout
(Optional, time units) Specifies the period of time to wait for a connection to the master node. If no response is received before the timeout expires, the request fails and returns an error. Defaults to 30s.

Request bodyedit

schedule

(Required, Cron scheduler configuration) Periodic or absolute schedule at which the policy creates snapshots and deletes expired snapshots.

Schedule changes to existing policies are applied immediately.

name

(Required, string) Name automatically assigned to each snapshot created by the policy.

This value supports the same date math supported in index names.

To prevent conflicting snapshot names, a UUID is automatically appended to each snapshot name.

repository

(Required, string) Repository used to store snapshots created by this policy.

This repository must exist prior to the policy’s creation. You can create a repository using the snapshot repository API.

config

(Required, object) Configuration for each snapshot created by the policy.

Parameters include:

indices
(Optional, array of strings) Array of index names or wildcard pattern of index names included in snapshots.
ignore_unavailable
(Optional, boolean) If true, missing indices do not cause snapshot creation to fail and return an error. Defaults to false.
include_global_state
(Optional, boolean) If true, cluster states are included in snapshots. Defaults to false.
retention

(Optional, object) Retention rules used to retain and delete snapshots created by the policy.

Parameters include:

expire_after
(Optional, time units) Time period after which a snapshot is considered expired and eligible for deletion.
max_count

(Optional, integer) Maximum number of snapshots to retain, even if the snapshots have not yet expired.

If the number of snapshots in the repository exceeds this limit, the policy retains the most recent snapshots and deletes older snapshots.

min_count
(Optional, integer) Minimum number of snapshots to retain, even if the snapshots have expired.

Examplesedit

The following request creates a snapshot lifecycle policy with an ID of daily-snapshots:

PUT /_slm/policy/daily-snapshots
{
  "schedule": "0 30 1 * * ?", 
  "name": "<daily-snap-{now/d}>", 
  "repository": "my_repository", 
  "config": { 
    "indices": ["data-*", "important"], 
    "ignore_unavailable": false,
    "include_global_state": false
  },
  "retention": { 
    "expire_after": "30d", 
    "min_count": 5, 
    "max_count": 50 
  }
}

When the snapshot should be taken, in this case, 1:30am daily

The name each snapshot should be given

Which repository to take the snapshot in

Any extra snapshot configuration

Which indices the snapshot should contain

Optional retention configuration

Keep snapshots for 30 days

Always keep at least 5 successful snapshots, even if they’re more than 30 days old

Keep no more than 50 successful snapshots, even if they’re less than 30 days old