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 Dominic Dsouza <do...@live.com> on 2019/07/31 12:05:43 UTC

Issue with inplace update when TimeStampUpdateProcessor is added in updateRequestProcessorChain in solrconfig

Hello,

I have found a strange issue with inplace updates. When i have TimeStampUpdateProcessor configured in my updateRequestProcessorChain like following:

  <processor class="solr.TimestampUpdateProcessorFactory">
            <str name="fieldName">mydate</str>
  </processor>

and i am doing a inplace update on pint field, then inplace update runs fine, but the indexed fields(fieldtype text_general) are removed, this can be checked by searching on that field. The updated document does not showup in the results(it was showing up before inplace update).

When i removed the TimestampUpdateProcessorFactory from solrconfig, everything is fine. Is there some issue here??