On 12/11/2021 7:49 PM, Surya R wrote:
Can anyone please let me know what this error is? Why is it referring to
update processor?
Thanks in advance for your help.
java.lang.NoSuchMethodError:
org.apache.solr.update.processor.TemplateUpdateProcessorFactory.replaceTokens(Ljava/lang/String;Lorg/apache/solr/common/util/Cache;Ljava/util/function/Function;)Ljava/lang/String;
from /solr/products/dataimport
That class is part of the solr-core jar.
Chances are very good that you are seeing this problem because your
install is loading at least one jar more than once. Specifically, I
believe you have probably loaded the solr-core jar with your config ...
this jar is loaded already from the Solr webapp, so if you load it
again, it can cause problems with any class contained in that jar.
Anytime you request additional jars to be loaded, you must be careful
that none of those jars are already loaded by any other means.
Thanks,
Shawn