is strictly prohibited Start Snapshot $ curl -XPUT "localhost:9200/_snapshot/my_backup/snapshot_20131010" -d '{ "indices":"+test_*,-test_4" }' repository snapshot name list of indices (optional) Friday, October 11, 13
is strictly prohibited Restore Index v0.90 1. Close the index (shutdown the cluster) 2. Find all existing index shards 3. Replace all index shards with data from backup 4. Open the index (start the cluster) Friday, October 11, 13
is strictly prohibited Restore Index v1.0 $ curl -XPOST "localhost:9200/_snapshot/my_backup/snapshot_20131010" -d '{ "indices":"test_*" }' $ curl -XPOST "localhost:9200/test_*/_close" close all indices that start with test_ repository name snapshot name list of indices to restore Friday, October 11, 13