Author: kwright
Date: Sun Apr 28 21:18:06 2013
New Revision: 1476841
URL: http://svn.apache.org/r1476841
Log:
Reduce number of table changes before reanalyze by default in postgresql to 2000
Modified:
manifoldcf/trunk/framework/core/src/main/java/org/apache/manifoldcf/core/database/DBInterfacePostgreSQL.java
Modified:
manifoldcf/trunk/framework/core/src/main/java/org/apache/manifoldcf/core/database/DBInterfacePostgreSQL.java
URL:
http://svn.apache.org/viewvc/manifoldcf/trunk/framework/core/src/main/java/org/apache/manifoldcf/core/database/DBInterfacePostgreSQL.java?rev=1476841&r1=1476840&r2=1476841&view=diff
==============================================================================
---
manifoldcf/trunk/framework/core/src/main/java/org/apache/manifoldcf/core/database/DBInterfacePostgreSQL.java
(original)
+++
manifoldcf/trunk/framework/core/src/main/java/org/apache/manifoldcf/core/database/DBInterfacePostgreSQL.java
Sun Apr 28 21:18:06 2013
@@ -1473,7 +1473,7 @@ public class DBInterfacePostgreSQL exten
if (threshold == null)
{
// Look for this parameter; if we don't find it, use a default value.
- analyzeThreshold =
ManifoldCF.getIntProperty("org.apache.manifoldcf.db.postgres.analyze."+tableName,5000);
+ analyzeThreshold =
ManifoldCF.getIntProperty("org.apache.manifoldcf.db.postgres.analyze."+tableName,2000);
analyzeThresholds.put(tableName,new Integer(analyzeThreshold));
}
else