Ah, OK. The analysis page in the admin screen is not really intended to analyze large text blocks. I suspect that if you're running into size limitations, you'll find the output pretty hard to read the output. I almost always use it with pretty short text fragments, usually just a few words.
FWIW, Erick On Fri, Jan 10, 2014 at 9:50 AM, Umapathy S <nsupat...@gmail.com> wrote: > I think it's the HTTP GET parameter length/size issue. I got to the > maximum characters it allowed through Field value (Index). But when I > added characters on Field value (Query), I got the red bar again. I had to > reduce the characters in Field value (Index) to make it work. > I was using chrome so possibly hit that 2KB GET limit. > > No. The request never reached the solr service (it was running localhost). > > Thanks. > > > On 10 January 2014 12:38, Erick Erickson <erickerick...@gmail.com> wrote: > >> 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 >> > >>