If you are using a Solr version before 4.0 you should look into. solrconfig.xml:
<maxFieldLength>10000</maxFieldLength> What is your solr version? On Thu, Jan 9, 2014 at 8:16 AM, Aruna Kumar Pamulapati < apamulap...@gmail.com> wrote: > Thanks, can you paste the text that you were trying to analyze? > > > On Thu, Jan 9, 2014 at 8:10 AM, Umapathy S <nsupat...@gmail.com> wrote: > >> Thanks. >> >> Actually there is no error thrown. Just a red bar appears on top. >> I have pasted it on http://snag.gy/U9IiJ.jpg >> >> >> On 9 January 2014 12:56, Aruna Kumar Pamulapati <apamulap...@gmail.com >> >wrote: >> >> > Can you copy paste the error, for some reason I can not see the image of >> > the screenshot you posted. >> > >> > >> > On Thu, Jan 9, 2014 at 7:52 AM, Umapathy S <nsupat...@gmail.com> wrote: >> > >> > > Hi, >> > > >> > > I am a new to solr/lucene. >> > > I am trying to do a text analysis on my index. The below error >> > > (screenshot) is shown when I increase the field value length. I have >> > tried >> > > searching in vain for any length specific restrictions in >> solr.TextField. >> > > There is no error text/exception thrown. >> > > >> > > [image: Inline images 1] >> > > >> > > The field is below >> > > <field name="text" type="text_general" stored="true" >> indexed="true" >> > > /> >> > > >> > > fieldtype is >> > > >> > > <fieldType name="text_general" class="solr.TextField" >> > > positionIncrementGap="100"> >> > > <analyzer type="index"> >> > > <tokenizer class="solr.StandardTokenizerFactory"/> >> > > <filter class="solr.StopFilterFactory" ignoreCase="true" >> > > words="stopwords.txt" enablePositionIncrements="true" /> >> > > <filter class="solr.LowerCaseFilterFactory"/> >> > > </analyzer> >> > > <analyzer type="query"> >> > > <tokenizer class="solr.StandardTokenizerFactory"/> >> > > <filter class="solr.StopFilterFactory" ignoreCase="true" >> > > words="stopwords.txt" enablePositionIncrements="true" /> >> > > <filter class="solr.SynonymFilterFactory" >> synonyms="synonyms.txt" >> > > ignoreCase="true" expand="true"/> >> > > <filter class="solr.LowerCaseFilterFactory"/> >> > > </analyzer> >> > > </fieldType> >> > > >> > > >> > > Any help much appreciated. >> > > >> > > Thanks >> > > >> > > Umapathy >> > > >> > >> > >