Hi everyone,
I notice that when the current index is rollovered, the index.mapping.depth.limit is not take into account for the new created index.
We are running an elasticsearch cluster and after we have created the first index, we make an elastic api call : PUT _all/_settings?preserve_existing=true with this body :
{
"index.mapping.depth.limit" : "100"
}
By making this API call : GET /my-index-*/_settings, we have this result :
"my-index-1": {
"settings": {
"index": {
"mapping": {
"depth": {
"limit": "100"
}
}
.....
}
But when the index is rollovered, the API call response is without the mapping depth limit section, and some errors like Limit of mapping depth [20] has been exceeded due to object field
Is there something we are doing it wrong ?
Thanks for your help
Khaled