There is limit on the number of fields that a index can have. i guess by default the limit is around 1000. In my case, the fields are generated dynamically and there could be a lot of fields actually. Is there any way that i can disable this limit?
I use ES version 7.6.2
Hello @Antony_Ukken,
The limit is by default 1000 and it can be changed using the index setting index.mapping.total_fields.limit.
The limit is set to protect the cluster to field mapping explosion.
Can I disable the limit or set it to unlimited ?
It is not possible to disable it completely.
It is acceptable to set it 10000.
The motivation as detailed here