I am trying to move one index from an older cluster with ES 5.3 to different cluster ES 7.10 using remote reindexing api both are in the same VPC
curl -X POST \https://target.com/_reindex \
-H 'content-type: application/json' \
-d '{
"source": {
"remote": {
"host": "https://source.com:443"
},
"index": "ind1"
},
"dest": {
"index": "ind1"
}
}'
I am getting this error
{"error":{"root_cause":[{"type":"null_pointer_exception","reason":null}],"type":"null_pointer_exception","reason":null},"status":500}
I cannot just take the snapshot and migrate as 5.3 indices aren't supported at 7.10