Repository: accumulo Updated Branches: refs/heads/1.6.0-SNAPSHOT 76b3fd049 -> d77fd6fd2
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/1.6.0-SNAPSHOT Commit: d77fd6fd29d2c769991b44b6f98be14b108169aa Parents: 76b3fd0 Author: Eric C. Newton <eric.new...@gmail.com> Authored: Tue Mar 25 13:00:08 2014 -0400 Committer: Eric C. Newton <eric.new...@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")); }