Greetings, I am trying to configure Nutch v1.15 and Solr v7.40 to index meta tags: https://wiki.apache.org/nutch/IndexMetatags
However, I'm getting the following error: java.lang.Exception: org.apache.solr.client.solrj.impl.HttpSolrClient$RemoteSolrException: Error from server at http://localhost:8983/solr/nutch: ERROR: [doc=https://mysite.domain.ca/<https://www.sheridancollege.ca/>] multiple values encountered for non multiValued field keywords: [somevalue1,somevalue2,somevalue3,etc] I've included the following entry in $SOLR_HOME/server/solr/configsets/nutch/conf/schema.xml <!-- fields for the metatags plugin --> <field name="metatag.description" type="text" stored="true" indexed="true" multiValued="true" /> <field name="metatag.keywords" type="text" stored="true" indexed="true" multiValued="true" /> <field name="description" type="text" stored="true" indexed="true" multiValued="true" /> <field name="keywords" type="text" stored="true" indexed="true" multiValued="true" /> It contains multiValued="true" and I did restart SOLR but the problem persists. I'm stuck at this point. Any ideas? regards, Ryan

