nutch field problem - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T09:21:51Z http://stackoverflow.com/feeds/question/1010661 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1010661/nutch-field-problem 0 nutch field problem Shore 2009-06-18T03:39:14Z 2009-06-18T05:42:18Z <p>I was using something like:</p> <pre><code>Field notdirectory = new Field("notdirectory","1", Field.Store.NO, Field.Index.UN_TOKENIZED); </code></pre> <p>and queries like "notdirectory:1" can be processed quite well all the time.</p> <p>But recently I've changed the "Field.Store.NO, Field.Index.UN_TOKENIZED" to index a non-numeric string:</p> <pre><code>Field stateField = new Field("state","irn_" + state, Field.Store.NO, Field.Index.UN_TOKENIZED); </code></pre> <p>and queries like "state:irn_CA" can never fetch any results any more,even though I watch through hadoop logs that "irn_CA" is added to "state" field in fact.</p> <p>So I doubt for Fields that satisfy "Field.Store.NO, Field.Index.UN_TOKENIZED",only numeric Fields can searchable,but I didn't see any documents about that.</p> <p>So what's the true reason for this?</p> http://stackoverflow.com/questions/1010661/nutch-field-problem/1010949#1010949 1 Answer by Shashikant Kore for nutch field problem Shashikant Kore 2009-06-18T05:42:18Z 2009-06-18T05:42:18Z <p>I think, you are using StandardAnalyzer for parsing the input query, which will tokenize your input query "irn_CA" into two tokens - "irn" and "CA". Since the index has "irn_CA" as single token, it won't match.</p> <p>Try using <a href="http://lucene.apache.org/java/2%5F4%5F0/api/org/apache/lucene/analysis/KeywordAnalyzer.html" rel="nofollow">KeywordAnalyzer</a> for while searching. It will generate single token for the query string and match the indexed token correctly.</p>