You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by ec...@apache.org on 2014/03/25 18:02:14 UTC

[3/4] git commit: ACCUMULO-2547 run the tservers with more memory

ACCUMULO-2547 run the tservers with more memory


Project: http://git-wip-us.apache.org/repos/asf/accumulo/repo
Commit: http://git-wip-us.apache.org/repos/asf/accumulo/commit/d77fd6fd
Tree: http://git-wip-us.apache.org/repos/asf/accumulo/tree/d77fd6fd
Diff: http://git-wip-us.apache.org/repos/asf/accumulo/diff/d77fd6fd

Branch: refs/heads/master
Commit: d77fd6fd29d2c769991b44b6f98be14b108169aa
Parents: 76b3fd0
Author: Eric C. Newton <er...@gmail.com>
Authored: Tue Mar 25 13:00:08 2014 -0400
Committer: Eric C. Newton <er...@gmail.com>
Committed: Tue Mar 25 13:00:22 2014 -0400

----------------------------------------------------------------------
 .../test/java/org/apache/accumulo/test/functional/LargeRowIT.java | 3 +++
 1 file changed, 3 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/accumulo/blob/d77fd6fd/test/src/test/java/org/apache/accumulo/test/functional/LargeRowIT.java
----------------------------------------------------------------------
diff --git a/test/src/test/java/org/apache/accumulo/test/functional/LargeRowIT.java b/test/src/test/java/org/apache/accumulo/test/functional/LargeRowIT.java
index 2f3ce04..31783c4 100644
--- a/test/src/test/java/org/apache/accumulo/test/functional/LargeRowIT.java
+++ b/test/src/test/java/org/apache/accumulo/test/functional/LargeRowIT.java
@@ -33,6 +33,8 @@ import org.apache.accumulo.core.data.Range;
 import org.apache.accumulo.core.data.Value;
 import org.apache.accumulo.core.security.Authorizations;
 import org.apache.accumulo.core.util.UtilWaitThread;
+import org.apache.accumulo.minicluster.MemoryUnit;
+import org.apache.accumulo.minicluster.ServerType;
 import org.apache.accumulo.minicluster.impl.MiniAccumuloConfigImpl;
 import org.apache.accumulo.test.TestIngest;
 import org.apache.hadoop.conf.Configuration;
@@ -44,6 +46,7 @@ public class LargeRowIT extends ConfigurableMacIT {
   
   @Override
   public void configure(MiniAccumuloConfigImpl cfg, Configuration hadoopCoreSite) {
+    cfg.setMemory(ServerType.TABLET_SERVER, cfg.getMemory(ServerType.TABLET_SERVER) * 2, MemoryUnit.BYTE);
     cfg.setSiteConfig(Collections.singletonMap(Property.TSERV_MAJC_DELAY.getKey(), "10ms"));
   }