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
Importing a graph with a lot of nodes using the Graph Manager results in an error from ElasticSearch:
Traceback (most recent call last):
File "/web_root/arches/arches/app/utils/data_management/resource_graphs/importer.py", line 128, in import_graph
graph.save()
File "/web_root/arches/arches/app/models/graph.py", line 510, in save
self.update_es_node_mapping(node, datatype_factory, se)
File "/web_root/arches/arches/app/models/graph.py", line 464, in update_es_node_mapping
se.create_mapping("resources", body=datatype_mapping)
File "/web_root/arches/arches/app/search/search.py", line 164, in create_mapping
self.es.indices.put_mapping(index=index, **body)
...
elasticsearch.BadRequestError: BadRequestError(400, 'illegal_argument_exception', 'Limit of total fields [1000] has been exceeded')
Increasing the limit with the following command resolves the issue:
Importing a graph with a lot of nodes using the Graph Manager results in an error from ElasticSearch:
Increasing the limit with the following command resolves the issue:
We may consider raising this limit to 2000 when defining the mapping if this is becomes a common issue.
The text was updated successfully, but these errors were encountered: