Details
-
Test
-
Status: Closed
-
Major
-
Resolution: Fixed
-
5.5
-
None
-
None
-
ubuntu 14.04, open jdk 1.8
Description
Using lookup suggester and fuzzy lookup suggester in combination. Data uploaded to solr through json. Up to 200K records, both suggesters are working fine, but after words they are not working.
Pushing Data as:
curl -X POST -H 'Content-Type: application/json' 'http://localhost:8983/solr/demo_autocomplete/update?versions=false' --data-binary @data.json
Reload as: curl "http://localhost:8983/solr/admin/cores?wt=json&action=RELOAD&core=demo_autocomplete"
and after that building and testing the suggester as:
url "http://localhost:8983/solr/demo_autocomplete/suggest?suggest.dictionary=fuzzySuggester&suggest=true&suggest.build=true&suggest.q=test&wt=json"
When I insert more than 200K records, it gives error as:
at org.apache.lucene.util.automaton.Operations.topoSortStatesRecurse(Operations.java:1311)
—
Is there any config I am missing or Do I need to modify some default limitations ?
Regards,
Govind