The following error is occurring when reindexing from remote es to es.
Request
POST _reindex
{
"source": {
"remote": {
"host": "http://remote_es_url:9200"
},
"index": "source"
},
"dest": {
"index": "dest"
}
}
Response
{
"error": {
"root_cause": [
{
"type": "exception",
"reason": "Error parsing the response, remote is likely not an Elasticsearch instance"
}
],
"type": "exception",
"reason": "Error parsing the response, remote is likely not an Elasticsearch instance",
"caused_by": {
"type": "x_content_parse_exception",
"reason": "[1:185] [search_response] failed to parse field [hits]",
"caused_by": {
"type": "x_content_parse_exception",
"reason": "[1:185] [hits] total doesn't support values of type: START_OBJECT"
}
}
},
"status": 500
}
remote es version : 7.6.0
reindex es version: 6.5.3
Aren't you supporting reindex of version es6 from version es7?
Thank you for your reply in advance.