You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nutch.apache.org by cu...@apache.org on 2005/08/26 23:21:10 UTC

svn commit: r240346 - /lucene/nutch/branches/mapred/conf/nutch-default.xml

Author: cutting
Date: Fri Aug 26 14:21:08 2005
New Revision: 240346

URL: http://svn.apache.org/viewcvs?rev=240346&view=rev
Log:
Fix a crazy default.  This made indexing rather slow...

Modified:
    lucene/nutch/branches/mapred/conf/nutch-default.xml

Modified: lucene/nutch/branches/mapred/conf/nutch-default.xml
URL: http://svn.apache.org/viewcvs/lucene/nutch/branches/mapred/conf/nutch-default.xml?rev=240346&r1=240345&r2=240346&view=diff
==============================================================================
--- lucene/nutch/branches/mapred/conf/nutch-default.xml (original)
+++ lucene/nutch/branches/mapred/conf/nutch-default.xml Fri Aug 26 14:21:08 2005
@@ -488,12 +488,12 @@
 
 <property>
   <name>indexer.maxMergeDocs</name>
-  <value>50</value>
+  <value>2147483647</value>
   <description>This number determines the maximum number of Lucene
   Documents to be merged into a new Lucene segment. Larger values
-  increase indexing speed and reduce the number of Lucene segments,
+  increase batch indexing speed and reduce the number of Lucene segments,
   which reduces the number of open file handles; however, this also
-  increases RAM usage during indexing.
+  decreases incremental indexing performance.
   </description>
 </property>