You are viewing a plain text version of this content. The canonical link for it is here.
Posted to solr-user@lucene.apache.org by Walter Underwood <wu...@wunderwood.org> on 2020/12/28 21:42:44 UTC

Missing processor in example update request processor chain?

The documentation says that the default update request processor change invokes LogUpdateProcessorFactory, DistributedUpdateProcessorFactory, then RunUpdateProcessorFactory.

The example immediately below that, also in the default solrconfig.xml file, is missing  DistributedUpdateProcessorFactory. Is that a documentation bug or am I missing something?

<updateRequestProcessorChain name="dedupe">
  <processor class="solr.processor.SignatureUpdateProcessorFactory">
    <bool name="enabled">true</bool>
    <str name="signatureField">id</str>
    <bool name="overwriteDupes">false</bool>
    <str name="fields">name,features,cat</str>
    <str name="signatureClass">solr.processor.Lookup3Signature</str>
  </processor>
  <processor class="solr.LogUpdateProcessorFactory" />
  <processor class="solr.RunUpdateProcessorFactory" />
</updateRequestProcessorChain>

https://lucene.apache.org/solr/guide/8_7/update-request-processors.html <https://lucene.apache.org/solr/guide/8_7/update-request-processors.html>

wunder
Walter Underwood
wunder@wunderwood.org
http://observer.wunderwood.org/  (my blog)