You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We currently use dynamic mappings in OpenSearch. And because of that we need to increase the limit of the total_fields to a number larger than the default 1000
If we dont increase it you get an error:
{
"body": {
"error": {
"root_cause": [
{
"type": "illegal_argument_exception",
"reason": "Limit of total fields [1000] has been exceeded"
}
],
"type": "illegal_argument_exception",
"reason": "Limit of total fields [1000] has been exceeded"
},
"status": 400
},
"statusCode": 400,
"headers": {
"content-type": "application/json; charset=UTF-8",
"content-length": "229"
}
}
We need to decide whether we map the searchable fields and or increasing the total_fields. If we map the fields we need to add this work to our workflow.
We currently use dynamic mappings in OpenSearch. And because of that we need to increase the limit of the total_fields to a number larger than the default 1000
If we dont increase it you get an error:
We need to decide whether we map the searchable fields and or increasing the total_fields. If we map the fields we need to add this work to our workflow.
https://opensearch.org/docs/latest/field-types/
The text was updated successfully, but these errors were encountered: