Hi Hoss, First of all, thank you for your reply.
Sorry for leaving the Solr version out in my previous email, I'm using Solr 4.10.3 running on Centos7, with the following JRE: Oracle Corporation OpenJDK 64-Bit Server VM (1.7.0_75 24.75-b04) This are the relevant portions of my schema.xml <!-- Generic text field type --> <fieldType name="text" class="solr.TextField" sortMissingLast="true"> <analyzer> <charFilter class="solr.HTMLStripCharFilterFactory"/> <tokenizer class="solr.StandardTokenizerFactory"/> <filter class="solr.ASCIIFoldingFilterFactory"/> <filter class="solr.StopFilterFactory" ignoreCase="true" words="stopwords.txt"/> <filter class="solr.LowerCaseFilterFactory"/> <filter class="solr.RemoveDuplicatesTokenFilterFactory"/> </analyzer> </fieldType> <field name="title" type="text" stored="true" indexed="true" multiValued="true"/> In this particular case I'm not using any special features, just a typical text field. I'm using the default similarity class provided by Solr, this is a pretty straightforward setup :) Regards, ----- Original Message ----- From: "Chris Hostetter" <hossman_luc...@fucit.org> To: solr-user@lucene.apache.org Sent: Thursday, May 14, 2015 4:08:36 PM Subject: [MASSMAIL]Re: High fieldNorm values causing really odd results : { : "match":true, : "value":655360, : "description":"fieldNorm(doc=5316)" : } ... : This match is in the "title" field, which has 119669 total terms (which : isn't such big number) and the total document count in this index is that smells like a bug -- by the looks of it an overflow bug? can you please provide some details on the version of solr you are using, and the specifics of your schema: what field type, what similarity configuration you have (if any) etc... -Hoss http://www.lucidworks.com/