I am using Nutch 1.6 and Solr 1.4.1 on Ubuntu in local mode and using Nutch's solrindex to index documents into Solr.
When indexing documents, I hit an occasional document that does not match the Solr schema. For example, a document which has two address fields when my Solr schema.xml does not specify address as being multi-valued (and I do not want it to be). Ideally, I would like this document to be skipped, an error written to the log file for later investigation, and the indexing of the remainder of the parsed documents to continue. Instead the job fails. I have tried setting <abortOnConfigurationError>${solr.abortOnConfigurationError:false}</abortOnC onfigurationError> in solrconfig.xml and restarting tomcat, but that does not seem to make a difference. Where else should I be looking?