Shalin: > The index directory location is being created inside the current working > directory. We should change that. I've opened SOLR-604 and attached a patch > which fixes this.
I updated from nightly build to incorporate your fix and it works perfectly, now building the spell indexes in solr/data. Thanks! Grant: > What happens when you open the built index in Luke > (http://www.getopt.org/luke)? Hmm, it looks a bit spacey -- I see the n-grams (n=3,4) but the text looks interspersed with spaces. Perhaps this is an artifact of Luke or n-grams are supposed to be this way, but that would obviously seem problematic. Here are some snips: <word> " h i s t o r y " <word> " p i z z a " <gram3> "i z" <gram3> " i " > Did you see any exceptions in your log? Just a warning which I've ignored based on the discussions in SOLR-572: WARNING: No fieldType: null found for dictionary: external. Using WhitespaceAnalzyer. Oddly, even if I specify a fieldType with a legitimate field type (e.g., spell) from my schema.xml, this same warning is thrown, so I assume the parameter is functionless. WARNING: No fieldType: spell found for dictionary: external. Using WhitespaceAnalzyer. <fieldType name="spell" class="solr.TextField" positionIncrementGap="100"> <analyzer> <tokenizer class="solr.StandardTokenizerFactory"/> <filter class="solr.StandardFilterFactory"/> <filter class="solr.LowerCaseFilterFactory"/> <filter class="solr.RemoveDuplicatesTokenFilterFactory"/> </analyzer> </fieldType> Ron