October 2019
Beginner
186 pages
5h 39m
English
To restore a snapshot, use the ID of the snapshot. This will retrieve all indices within that snapshot:
POST _snapshot/my_repo/my_snapshot_2/_restore
To retrieve specific indices in a snapshot, use the following:
POST _snapshot/my_repo/my_snapshot_2/_restore{ "indices": "logs-*", "ignore_unavailable": true, "include_global_state": false}
This will retrieve all indices starting with logs- in my_snapshot_2.
Read now
Unlock full access