Hello,
I'm trying to configure a Database migration task to copy data from RDS Aurora (MySQL compatible) to Opensearch 2.3.
If I enable the properties ParallelLoadThreads & ParallelLoadBufferSize then I have an error and nothing is copied:
Elasticsearch: BULK send request failed SourceTable:xxxxxxxxxxxxx TargetIndex:xxxxxxxxxxxxxxx Operation:BULK Failed Completely DocumentCount:xxxx ES HttpCode:400 ESErrorResponse:
{
"error": {
"root_cause": [
{
"type": "illegal_argument_exception",
"reason": "Action/metadata line [1] contains an unknown parameter [_type]"
}
],
"type": "illegal_argument_exception",
"reason": "Action/metadata line [1] contains an unknown parameter [_type]"
},
"status": 400
}
I guess it is due to the new version as the type has been removed.
Is there a specific property to enable to solve this issue? I can't find anything in the documentation except the property UseNewMappingType but it only solves the issue with _doc. Or just DMS is not compatible with opensearch 2.3 at the moment?
Thanks in advance.
Best,
Ben