Limit of total fields [1000] in index has been exceeded

It looks like this is handle by the index settings index.mapping.total_fields.limit. So you should be able to bump that value. Just understand that more fields is more overhead and that sparse fields cause trouble. So raise it with caution. Bumping into the limit is likely a sign that you are doing something that isn't going to work well with Elasticsearch in the future.

2 Likes