Hi,
I am not able to find anything in the log or rather not that specific. This
error is being thrown when I add a string argument to my filter in schema.
If I remove the same, I donot get any error. I tried changing the datatype
but still same error.
A little more detail regarding the filter arguments:

                <fieldType name="textNumeric" class="solr.CustomTextField"
positionIncrementGap="100" >
                        <analyzer type="index">
                                <tokenizer 
class="solr.WhitespaceTokenizerFactory"/>
                                <filter class="solr.CustomFilterFactory"
pattern="(.*)/([0-9]+)/([0-9]+)/([0-9]+)/(.*)?" />
                        </analyzer>
                        <analyzer type="query">
                                <tokenizer 
class="solr.WhitespaceTokenizerFactory"/>
                        </analyzer>
                </fieldType>

                
                <fieldType name="textCustom" class="solr.CustomTextField"
positionIncrementGap="100" >
                        <analyzer type="index">
                                <tokenizer 
class="solr.WhitespaceTokenizerFactory"/>
                                <filter class="solr.CustomFilterFactory"
pattern="(.*)/([0-9]+)/([0-9]+)/([0-9]+)/(.*)?" ValueToStore="N" />
                                <filter class="solr.LengthFilterFactory" 
min="1" max="100"
enablePositionIncrements="true" />
                        </analyzer>
                        <analyzer type="query">
                                <tokenizer 
class="solr.WhitespaceTokenizerFactory"/>
                        </analyzer>
                </fieldType>

I get error here only for textCustom and not textNumeric while initializing
the core.




--
View this message in context: 
http://lucene.472066.n3.nabble.com/Plugin-init-failure-for-custom-analysis-filter-tp4147851p4148259.html
Sent from the Solr - User mailing list archive at Nabble.com.

Reply via email to