Hi,
We are trying to migrate from 5.5.2. to 6.8.12 version.Below is the sample of my mapping. I have set my mapping to dynamic:strict and only one object I would want to introduce dynamically so setting it to true. This worked fine 5.5.2 but in 6.8.12 I am getting the below error. Can some one please help how to proceed.
Error:
[ElasticsearchException[Elasticsearch exception [type=strict_dynamic_mapping_exception, reason=mapping set to strict, dynamic introduction of [5bd6fa70-0412-11eb-a292-8aa14da452bd] within [_doc] is not allowed]]]
Mapping:
{
"dynamic":"strict",
"properties":{
"name":{
"type":"text",
"analyzer":"case_insensitive_analyzer",
"fielddata":true
},
"location":{
"type":"object",
"dynamic":"true"
}
}
}