Webservice Error and Troubleshooting

Good afternoon, first, forgive me if this is in the wrong topic. Second I built a webservice using the generator code to index over 1000. Is this a siren error or elastic error? I do have the ability to reduce the number of fields, but how do you suggest I resolve the issue. Thanks, Jeff

Web Service Response:
“error”: {
“message”: “Failed to index results: Limit of total fields [1000] has been exceeded”,
“name”: “Error”,
“stack”: "Error: Failed to index results: Limit of total fields [1000] has been exceeded\n
…}

Hi Jeff,

This is an message from Elasticsearch.

index.mapping.total_fields.limit

The maximum number of fields in an index. Field and object mappings, as well as field aliases count towards this limit. The default value is 1000.

To increase total fields limit to your desired number , try this

PUT test_index/_settings
{
  "index.mapping.total_fields.limit": 2000
}

Regards
Manu Agarwal

excellent! thank you for the quick response