You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by Apache Wiki <wi...@apache.org> on 2013/08/20 19:39:50 UTC

[Solr Wiki] Update of "UpdateRequestProcessor" by HossMan

Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Solr Wiki" for change notification.

The "UpdateRequestProcessor" page has been changed by HossMan:
https://wiki.apache.org/solr/UpdateRequestProcessor?action=diff&rev1=15&rev2=16

Comment:
note about default="true"

  solrconfig.xml files can contain any number of !UpdateRequestProcessorChains...
  
  {{{
-  <updateRequestProcessorChain name="mychain" >
+  <updateRequestProcessorChain name="mychain" default="true">
     <processor class="solr.CustomUpdateRequestProcessorFactory" >
       <lst name="name">
         <str name="n1">x1</str>
@@ -24, +24 @@

  }}}
  
  Allmost all processor chains should end with an instance of {{{RunUpdateProcessorFactory}}} unless the user is explicitly executing the update commands in an alternative custom {{{!UpdateRequestProcessorFactory}}}.
+ 
+ At most one processor may be configured as the "default".  if no processor is configured as a default, then an implicit default useing {{{LogUpdateProcessorFactory}}} and {{{RunUpdateProcessorFactory}}} is created for you.
  
  = Selecting the UpdateChain for Your Request =