A simple migration script written in CoffeeScript.
cd elasticsearch-migration-script
npm installChange the es configuration in config.json
{
"bulkSize": 1000,
"origin": {
"host": "localhost:9200",
"version": "1.7",
"index": "twitter",
"type": "tweet"
},
"target": {
"host": "localhost:9201",
"version": "5.5",
"index": "twitter",
"type": "tweet"
}
}coffee index.coffeeGood luck!