On 7/23/2020 8:56 AM, Porritt, Ian wrote:
Note: the solrconfig has <schemaFactory class="ClassicIndexSchemaFactory"/> defined.
<snip>
org.apache.solr.common.SolrException: *This IndexSchema is not mutable*.

                at org.apache.solr.update.processor.AddSchemaFieldsUpdateProcessorFactory$AddSchemaFieldsUpdateProcessor.processAdd(AddSchemaFieldsUpdateProcessorFactory.java:376)

Your config contains an update processor chain using the AddSchemaFieldsUpdateProcessorFactory.

This config requires a mutable schema, but you have changed to the classic schema factory, which is not mutable.

You'll either have to remove the config for the update processor, or change back to the mutable schema. I would recommend the former.

Thanks,
Shawn

Reply via email to