Hmmm, works on a 4x Solr. Please paste the raw text you're putting in the entry field here, so I don't have to re-type it all from the image (can't cut/paste).
What version of Solr are you using? Anything come out in the Solr log that looks suspicious? Best, Erick 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 >