Hi
we have dynamic mappings for our indices, we are receiving below exception while bulk indexing using kafka-connect-elasticsearch plugin
type: mapper_exception, reason: timed out while waiting for a dynamic mapping update
after some google search we came across a setting "dynamic_timeout" which we increased 600 seconds. still we are seeing the same exception
cluster settings after the update
{
"persistent": {
"indices": {
"mapping": {
"dynamic_timeout": "600s"
}
}
},
"transient": {
"cluster": {
"routing": {
"allocation": {
"node_concurrent_recoveries": "6",
"enable": "all"
}
}
},
"indices": {
"mapping": {
"dynamic_timeout": "600s"
},
"recovery": {
"max_bytes_per_sec": "600mb"
}
}
}
}
any help would be very helpful
version used: 8.12.2
Please let me know if you need any additional information