You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@nutch.apache.org by Jeff Cocking <je...@gmail.com> on 2015/04/21 22:20:13 UTC

Possible Mismatch Variable Name in nutch-default.xml

I am going through the nutch-default.xml file to learn and understand where
and how each of the config values are utilized.

The subcollection property in nutch-default.xml is:

<property>
  <name>subcollection.default.field</name>
  <value>subcollection</value>
  <description>
  The default field name for the subcollections.
  </description>
</property>

Within the subcollection plugin
src\java\org\apache\nutch\indexer\subcollection\SubcollectionIndexingFilter.java
has the following at line 56:

   fieldName = conf.get("subcollection.default.fieldname", "subcollection");


Shouldn't subcollection.default.fieldname = subcollection.default.field?

jeff