You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nutch.apache.org by le...@apache.org on 2012/09/18 22:30:25 UTC

svn commit: r1387347 - in /nutch/branches/2.x: CHANGES.txt conf/nutch-default.xml

Author: lewismc
Date: Tue Sep 18 20:30:25 2012
New Revision: 1387347

URL: http://svn.apache.org/viewvc?rev=1387347&view=rev
Log:
NUTCH-1432 property storage.schema does not work anymore, should be storage.schema.webpage and storage.schema.host

Modified:
    nutch/branches/2.x/CHANGES.txt
    nutch/branches/2.x/conf/nutch-default.xml

Modified: nutch/branches/2.x/CHANGES.txt
URL: http://svn.apache.org/viewvc/nutch/branches/2.x/CHANGES.txt?rev=1387347&r1=1387346&r2=1387347&view=diff
==============================================================================
--- nutch/branches/2.x/CHANGES.txt (original)
+++ nutch/branches/2.x/CHANGES.txt Tue Sep 18 20:30:25 2012
@@ -2,6 +2,8 @@ Nutch Change Log
 
 Release 2.1 - Current Development
 
+* NUTCH-1432 property storage.schema does not work anymore, should be storage.schema.webpage and storage.schema.host (lewismc)
+
 * NUTCH-1468 Redirects that are external links not adhering to db.ignore.external.links (Matt MacDonald via ferdy)
 
 * NUTCH-1470 Ensure test files are included for runtime testing (lewismc)

Modified: nutch/branches/2.x/conf/nutch-default.xml
URL: http://svn.apache.org/viewvc/nutch/branches/2.x/conf/nutch-default.xml?rev=1387347&r1=1387346&r2=1387347&view=diff
==============================================================================
--- nutch/branches/2.x/conf/nutch-default.xml (original)
+++ nutch/branches/2.x/conf/nutch-default.xml Tue Sep 18 20:30:25 2012
@@ -1191,11 +1191,20 @@
 </property>
 
 <property>
-  <name>storage.schema</name>
+  <name>storage.schema.webpage</name>
   <value>webpage</value>
   <description>This value holds the schema name used for Nutch web db.
   Note that Nutch ignores the value in the gora mapping files, and uses
-  this as the schema name.
+  this as the webpage schema name.
+  </description>
+</property>
+
+<property>
+  <name>storage.schema.host</name>
+  <value>host</value>
+  <description>This value holds the schema name used for Nutch host db.
+  Note that Nutch ignores the value in the gora mapping files, and uses
+  this as the host schema name.
   </description>
 </property>