We are indexing a word document in Solr. It indexed properly. However, if I search for a word which is at a position more than 11000, the search is not returning anything. Is there any configuration to make Solr search work on entire data in the document indexed. Any help will be appreciated.
Asked
Active
Viewed 120 times
0
-
1Which version of Solr are you using? With version 4 there have been changes around that. If you are using Solr 4.X, could you post the analyzer of the affected field? This is to check if a `LimitTokenCountFactory` is in play. – cheffe Nov 15 '13 at 11:49
-
@cheffe Thanks for your reponse.We are using Solr 3.X.And i got the issue.We configured MaxFieldLength property in SolrConfig.xml as 10000 and the indexed document contains nearly 30000 tokens. – Prasobh.Kollattu Nov 18 '13 at 12:50