1 Answer
- Newest
- Most votes
- Most comments
0
Have you tried changing the index.mapping.total_fields.limit setting, you need to update the index settings using the OpenSearch API. Here is an example of how you can do this. Let me know the results of this setting change.
Create a new index with the updated setting:
PUT /my-index
{
"settings": {
"index.mapping.total_fields.limit": 2500
}
}
Update an existing index:
PUT /my-index/_settings
{
"index.mapping.total_fields.limit": 2500
}
answered 2 years ago
Relevant content
asked a year ago
asked 2 years ago
