You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by st...@apache.org on 2010/10/13 21:45:44 UTC

svn commit: r1022263 - in /hbase/trunk: pom.xml src/main/java/org/apache/hadoop/hbase/zookeeper/MiniZooKeeperCluster.java

Author: stack
Date: Wed Oct 13 19:45:43 2010
New Revision: 1022263

URL: http://svn.apache.org/viewvc?rev=1022263&view=rev
Log:
Upping pom memory and changing zk default port to help debug; on first, no harm in letting heap grow and on second, there seems to be errant zk cluster running on hudson ... trying to see if tests generate it when run clean

Modified:
    hbase/trunk/pom.xml
    hbase/trunk/src/main/java/org/apache/hadoop/hbase/zookeeper/MiniZooKeeperCluster.java

Modified: hbase/trunk/pom.xml
URL: http://svn.apache.org/viewvc/hbase/trunk/pom.xml?rev=1022263&r1=1022262&r2=1022263&view=diff
==============================================================================
--- hbase/trunk/pom.xml (original)
+++ hbase/trunk/pom.xml Wed Oct 13 19:45:43 2010
@@ -190,7 +190,7 @@
           <configuration>
             <forkedProcessTimeoutInSeconds>900</forkedProcessTimeoutInSeconds>
             <argLine>-enableassertions</argLine>
-            <argLine>-Xmx1024m</argLine>
+            <argLine>-Xmx1400m</argLine>
             <redirectTestOutputToFile>true</redirectTestOutputToFile>
           </configuration>
         </plugin>

Modified: hbase/trunk/src/main/java/org/apache/hadoop/hbase/zookeeper/MiniZooKeeperCluster.java
URL: http://svn.apache.org/viewvc/hbase/trunk/src/main/java/org/apache/hadoop/hbase/zookeeper/MiniZooKeeperCluster.java?rev=1022263&r1=1022262&r2=1022263&view=diff
==============================================================================
--- hbase/trunk/src/main/java/org/apache/hadoop/hbase/zookeeper/MiniZooKeeperCluster.java (original)
+++ hbase/trunk/src/main/java/org/apache/hadoop/hbase/zookeeper/MiniZooKeeperCluster.java Wed Oct 13 19:45:43 2010
@@ -48,7 +48,7 @@ public class MiniZooKeeperCluster {
   private static final int CONNECTION_TIMEOUT = 30000;
 
   private boolean started;
-  private int clientPort = 21810; // use non-standard port
+  private int clientPort = 21818; // use non-standard port
 
   private NIOServerCnxn.Factory standaloneServerFactory;
   private int tickTime = 0;