Hope you can help me here. I did an upgrade of ES a few months ago to ES7.x . I was creating a new index but wanted to maintain the old one.
The problem I have is that I cannot use the older index, not sure what went wrong but I can't access the info. So I want to run two separate instances of ES which is feasible.
The problem is that I don't know which version was installed before the upgrade. Can you tell me how to identify the previous node version?
The error I get when opening the old index with ES6.1 is:
[node_meta_data] unknown field [node_version], parser not found
I had an index working in a ES version (I don't know which one), in order to explain myself better, I'll call this index legacy. A few months ago the project had a major overhaul and I updated the ES Version to 7.13. This overhaul included creating a new index bc the project had different info.
I made a backup of the legacy index node files and tried to update. But now, in the ES7 I can't access to the legacy index. Then I tried installing previous versions of ES (6.1 and 6.8) but none of those seem to be able to open the legacy index, showing the error "[node_meta_data] unknown field [node_version], parser not found".
So, right now I have the legacy index node files and no way to access the info. Can anyone help me access the info stored in it or how to find out which version it was created ?
Do you mean you just copied the files from disk, or do you mean you took a snapshot? If you have a snapshot then you can set up a new 6.8 cluster and restore it into that. If you just copied the files then note the warning in the docs:
WARNING: The only reliable and supported way to back up a cluster is by taking a snapshot . You cannot back up an Elasticsearch cluster by making copies of the data directories of its nodes. There are no supported methods to restore any data from a filesystem-level backup.
This error occurs if you're trying to downgrade an Elasticsearch node in place, which won't work. Instead you'll need to create a new cluster running the older version, and restore a snapshot into it.
Apache, Apache Lucene, Apache Hadoop, Hadoop, HDFS and the yellow elephant
logo are trademarks of the
Apache Software Foundation
in the United States and/or other countries.