On 5/26/2015 10:16 PM, Zheng Lin Edwin Yeo wrote: > I tried to follow the example here > https://wiki.apache.org/solr/UpdateRequestProcessor, by putting > the updateRequestProcessorChain in my solrconfig.xml > > But I'm getting the following error when I tried to reload the core. > > Caused by: org.apache.solr.common.SolrException: Error loading class > 'solr.CustomUpdateRequestProcessorFactory' > > Is there anything I might have missed out? I'm using Solr 5.1.
CustomUpdateRequestProcessorFactory is not the name of an actual usable update processor. On that wiki page, it is a placeholder for a custom class name. This class actually does exist within the Solr source code, but it is defined in the *TEST* code, not the main source code that actually creates the information that's included in the Solr download. I've updated the wiki page to try making this more clear, by using an entirely fictional class name. Thanks, Shawn