from documentation:
The most basic form of _reindex just copies documents from one index to another. This will copy documents from the twitter index into the new_twitter index
POST /_reindex
{
"source": {
"index": "twitter"
},
"dest": {
"index": "new_twitter"
}
}
but i don't want a index with a new name... how preserve the index name (without alias)?