Hi Folks,
I am wondering if I can use snapshots to "merge" data from a big mistake we made in our deployments.
On a small cluster, without changing the version of Elasticsearch, we:
- Stopped the entire Elasticsearch cluster
- Changed the elasticsearch.yml file on each member to mistakenly point to a new physical disk
- Restarted the cluster
So now we want to go back to the old disks, and merge the new data with the old.
My thought was to:
- Stop writes
- Snapshot current (new) indices
- Switch back to old disks
- Load snapshot from new into old
- Re-enable writes
Will that actually work? Since the transition from old to new disks happened on the same day, both versions of the data on old and new have indices of the same name (prefix + YYYY.mm.dd suffix).
I am hoping that a snapshot restore might be able to merge the index names that are named the same.
Thoughts?
Thanks for considering,
-peter