Hello,
I'm trying to use the /_reindex from remote api with the query:
POST /_reindex
{
"source": {
"index": "existing_index"
},
"dest": {
"index": "new_index"
}
}
I got:
{
"error": {
"root_cause": [{
"type": "connect_exception",
"reason": null
}],
"type": "connect_exception",
"reason": null
},
"status": 500
}
What should I do on this error?
Thank you!