On 3/12/2015 12:43 PM, Pedro Figueiredo wrote: > I saw an issue in Jira (https://issues.apache.org/jira/browse/SOLR-7234) > with status Resolved, but the resolution is not identified in the issue. > > I am facing the exact same problem.. and not able to identified the > solution.
I believe the problem is that you are using ClassicSchemaIndexFactory, but you did not remove AddSchemaFieldsUpdateProcessorFactory from the updateRequestProcessorChain config. That update processor requires the managed schema factory. Chances are that you started with the data-driven example config set and then realized you did not need/want the managed schema, so you switched to the classic factory. If you do not want the managed schema, you should probably start with the techproducts example rather than the data-driven example. I think we need to add some info to the schemaFactory comment in the data-driven example config so that people know they need to also modify the update processor chain when they want to disable the Schema API. Thanks, Shawn