logging - Solr. How to check that update request processor is invoked during document update -
i have following configuration in solrconfig.xml:
<updaterequestprocessorchain name="classification"> <processor class="solr.classificationupdateprocessorfactory"> <str name="inputfields">title_s</str> <str name="classfield">category_s</str> <str name="algorithm">bayes</str> </processor> <processor class="solr.logupdateprocessorfactory" /> <processor class="solr.runupdateprocessorfactory" /> </updaterequestprocessorchain> <initparams path="/update/**"> <lst name="defaults"> <str name="update.chain">add-unknown-fields-to-the-schema</str> <str name="update.chain">classification</str> </lst> </initparams>
so, according solr documentation, new documents should classified during "update" operation (during adding new document). don't see, documents classified (because category_s filed empty) , i'm not sure, "classification" chain took participation in handling of request. exist way find out how request handled during processing , troubleshoot problem? suppose should place, logupdateprocessorfactory flushes logs, cannot find it...
Comments
Post a Comment