When you originally defined the snapshot, you did something like this (or similar):
PUT http://localhost:9200/_snapshot/Snapshots { "type": "fs", "settings": { "location": "/blah" } } On the new/empty cluster, this snapshot is not yet registered, so the first thing you need to do is to run that again: PUT http://localhost:9200/_snapshot/Snapshots { "type": "fs", "settings": { "location": "/blah" } } Then after that, you should be able to restore to the new/empty cluster (as long as that location "/blah" is accessible from the new cluster node). -- You received this message because you are subscribed to the Google Groups "elasticsearch" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/elasticsearch/65f4f381-ec15-4083-9608-9ca02dfc10a8%40googlegroups.com. For more options, visit https://groups.google.com/groups/opt_out.
