Hi,
I have 5 Indices on my Elasticsearch and want to reindex all of them. Is there an API which can do this? I tried it with this approach:
{
"conflicts": "proceed",
"source": {
"index": ["index1", "index2","index3","index4","index5"]
},
"dest": {
"index": ["index1_new", "index2_new","index3_new","index4_new","index5_new"],
"op_type": "create"
}
}