Restore Solr snapshots

You must restore Solr snapshots.

  1. For unsecure cluster
    curl -v "http://${URL}/solr/vertex_index/replication?command=restore&location=/path/to/backup/directory&name=vertex_index_backup"
    curl -v "http://${URL}/solr/edge_index/replication?command=restore&location=/path/to/backup/directory&name=edge_index_backup"
    curl -v "http://${URL}/solr/fulltext_index/replication?command=restore&location=/path/to/backup/directory&name=fulltext_index_backup"
  2. For secured cluster
    curl -v --negotiate -u: "http://${URL}/solr/vertex_index/replication?command=restore&location=/path/to/backup/directory&name=vertex_index_backup"
    curl -v --negotiate -u: "http://${URL}/solr/edge_index/replication?command=restore&location=/path/to/backup/directory&name=edge_index_backup"
    curl -v --negotiate -u: "http://${URL}/solr/fulltext_index/replication?command=restore&location=/path/to/backup/directory&name=fulltext_index_backup"