0 votes
in ElasticSearch by
What is the use of restore API?

1 Answer

0 votes
by

Elasticsearch provides _restore API to restore the data, which backed up to a snapshot. So, the restore API helps to restore a snapshot into a running cluster.

To restore the data into Elasticsearch, both _snapshot and _restore APIs are used along with the snapshot name, which you want to restore. For example -

  1. POST /_snapshot/snapshot_name/_restore  
...