Re: Solr Size Limitation upto 32 KB files

2019-01-03 Thread Jan Høydahl
You are not saying exactly how you index those documents. But check out the requestParsers tag in solrconfig.xml, see https://lucene.apache.org/solr/guide/6_6/requestdispatcher-in-solrconfig.html#RequestDispatcherinSolrConfig-requestParsersElement

Re: Solr Size Limitation upto 32 KB files

2019-01-02 Thread Erick Erickson
Adding to what Bernd said, _string_ fields that large are almost always a result of misunderstanding the use case. Especially if you find yourself searching with the q=field:*word* pattern. If you're trying to search within the string you need a TextField-based type, not a StrField. Best, Erick

Re: Solr Size Limitation upto 32 KB files

2019-01-02 Thread Bernd Fehling
Hi, I don't know the limits about Solr 4.2.1 but the RefGuide of Solr 6.6 says about Field Types for Class StrField: "String (UTF-8 encoded string or Unicode). Strings are intended for small fields and are not tokenized or analyzed in any way. They have a hard limit of slightly less than 32K." If

Solr Size Limitation upto 32 KB files

2019-01-02 Thread Kranthi Kumar K
Hi, We are currently using Solr 4.2.1 version in our project and everything is going well. But recently, we are facing an issue with Solr Data Import. It is not importing the files with size greater than 32766 bytes (i.e, 32 kb) and showing 2 exceptions: 1. java.lang.illegalargumentexcepti