Frequently Asked Question
How to increase the no of fields in an index
Last Updated 3 years ago
Indices have default limit on the number of fields set to 1000. This is implicit. This is to ensure optimal performance. However if there is a reason to increase the no of indices to more than 1000, it can be set as follows
PUT my_index/_settings
{
"index.mapping.total_fields.limit": 2000
}