Hi Ryan, could be caused by the managed schema. Note for Solr 7.x updating the schema.xml alone may be not sufficient, see https://wiki.apache.org/nutch/NutchTutorial#Setup_Solr_for_search
Let us know whether this works. Thanks! And we'll update the wiki page, resp. in the new wiki: https://cwiki.apache.org/confluence/display/NUTCH/IndexMetatags (migration is ongoing) Best, Sebastian On 7/17/19 9:52 PM, Ryan Suarez wrote: > 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 >

