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

Popular posts from this blog

javascript - Confirm a form & display message if form is valid with JQuery -

Retrieving ETA (estimated time of arrival) with Google Distance Matrix API and public transit as transport mode -

ionic framework - Meteor - Error: Failed to execute 'insertBefore' on 'Node' -