We seem to be running out of shards on some of our larger indices on Elasticsearch 1.7.
In order to utilize larger clusters with more nodes, I'm hoping that we can create new indices with more shards, and copy the data from the old indices.
I realize that we could re-index from the source application but that would take weeks.
Can we create a new index on a new cluster, with more shards, and simply copy the data with elasticdump?
elasticdump \
--input=http://localhost:9700/myhugeindex \
--output=http://newhost:9700/myhugeindex \
--type=mapping
elasticdump \
--input=http://localhost:9700/myhugeindex \
--output=http://newhost:9700/myhugeindex \
--type=data
Once the transfer is complete, we would invalidate and re-index all changes committed after elasticdump was started.
Can it be done this way?
Thanks,
Roy