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/01/11 21:29:52 UTC

svn commit: r1230234 - in /nutch/branches/nutchgora: CHANGES.txt conf/gora.properties

Author: lewismc
Date: Wed Jan 11 20:29:52 2012
New Revision: 1230234

URL: http://svn.apache.org/viewvc?rev=1230234&view=rev
Log:
commit to address NUTCH-1189 and update to CHANGES.txt

Modified:
    nutch/branches/nutchgora/CHANGES.txt
    nutch/branches/nutchgora/conf/gora.properties

Modified: nutch/branches/nutchgora/CHANGES.txt
URL: http://svn.apache.org/viewvc/nutch/branches/nutchgora/CHANGES.txt?rev=1230234&r1=1230233&r2=1230234&view=diff
==============================================================================
--- nutch/branches/nutchgora/CHANGES.txt (original)
+++ nutch/branches/nutchgora/CHANGES.txt Wed Jan 11 20:29:52 2012
@@ -2,6 +2,8 @@ Nutch Change Log
 
 Release nutchgora - Current Development
 
+* NUTCH-1189 add commented out default settings to gora.properties file (lewismc, Ferdy)
+
 * NUTCH-1138 remove LogUtil from trunk and nutchgora (lewismc)
 
 * NUTCH-1237 Improve javac arguements for more verbose output (lewismc)

Modified: nutch/branches/nutchgora/conf/gora.properties
URL: http://svn.apache.org/viewvc/nutch/branches/nutchgora/conf/gora.properties?rev=1230234&r1=1230233&r2=1230234&view=diff
==============================================================================
--- nutch/branches/nutchgora/conf/gora.properties (original)
+++ nutch/branches/nutchgora/conf/gora.properties Wed Jan 11 20:29:52 2012
@@ -1,2 +1,48 @@
+###############################
+# Default SqlStore properties #
+###############################
+
 gora.sqlstore.jdbc.driver=org.hsqldb.jdbcDriver
 gora.sqlstore.jdbc.url=jdbc:hsqldb:hsql://localhost/nutchtest
+# gora.sqlstore.jdbc.user=
+# gora.sqlstore.jdbc.password=
+
+################################
+# Default AvroStore properties #
+################################
+
+# gora.avrostore.codec.type=BINARY||JSON
+
+################################
+# DatafileAvroStore properties #
+################################
+# DataFileAvroStore is file based store which uses Avro's 
+# DataFile{Writer,Reader}'s as a backend. This datastore supports 
+# mapreduce.
+
+# gora.datafileavrostore.###=
+
+#########################
+# HBaseStore properties #
+#########################
+# HBaseStore currently reads no Gora properties. However the HBase client 
+# requires that the Configuration contains a valid "hbase.zookeeper.quorum"
+# property. It should be included within hbase-site.xml on the classpath. When
+# this property is omitted, it expects Zookeeper to run on localhost:2181.
+# Note: When Nutch updates to Gora 0.2 (or higher), one is able to directly
+# set the property onto Configuration before instantiating the DataStore, or 
+# simply include the property within nutch-site.xml.
+
+#############################
+# CassandraStore properties #
+#############################
+
+# gora.cassandrastore.servers=localhost:9160
+
+#######################
+# MemStore properties #
+#######################
+# This is a memory based {@link DataStore} implementation for tests.
+
+# gora.memstore.###=
+