Snapshot failed

{
  "error": {
    "root_cause": [
      {
        "type": "snapshot_restore_exception",
        "reason": "[student_backup_clay:student_backup_clay/Wdlq3XOnTWuXGxjTqZt0cQ] the snapshot was created with Elasticsearch version [6.7.2] which is higher than the version of this node [6.7.1]"
      }
    ],
    "type": "snapshot_restore_exception",
    "reason": "[student_backup_clay:student_backup_clay/Wdlq3XOnTWuXGxjTqZt0cQ] the snapshot was created with Elasticsearch version [6.7.2] which is higher than the version of this node [6.7.1]"
  },
  "status": 500
}

Hi @elk3,

In elasticsearch, snapshots can't be read by older versions. You can restored snapshot to version 6.7.2 and above only.

You can reindex your indices in older version if you want.

Regards,
Harsh Bajaj

how reindex to older version

Hi @elk3,

You can use logstash to read the data from elasticsearch-6.7.2 host and send it to elasticsearch-6.7.1 host. Like in logstash input plugin configure your elasticsearch-6.7.2 host and in output plugin configure your elasticsearch-6.7.1 host.

I found a blog for the same. Please refer below link for reindex elasticsearch with logstash.
This is for older version but you can get idea in details that how it works.
http://david.pilato.fr/blog/2015/05/20/reindex-elasticsearch-with-logstash/

Regards,
Harsh Bajaj

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.