I have ElasticSearch index created which has approx 350 fields (including nested fields), I have defined mapping only for few of them.
While calling the _update
API I am getting below exception with 400 Bad request
.
Limit of total fields [1000] in index [test_index] has been exceeded
I want to understand the exact reason for this exception since my number of fields and fields for which mapping is defined both are less than 1000.
Note: I have nested fields and dynamic mapping enabled.