ACCUMULO-3146 Also give the tserver a bit more heap to make sure the tserver doesn't die.
Project: http://git-wip-us.apache.org/repos/asf/accumulo/repo Commit: http://git-wip-us.apache.org/repos/asf/accumulo/commit/44bf5ed2 Tree: http://git-wip-us.apache.org/repos/asf/accumulo/tree/44bf5ed2 Diff: http://git-wip-us.apache.org/repos/asf/accumulo/diff/44bf5ed2 Branch: refs/heads/master Commit: 44bf5ed2b175cbc93ea0daf6c7c80c14b48c9fb3 Parents: 42a3fec Author: Josh Elser <els...@apache.org> Authored: Sun Oct 5 21:13:53 2014 -0400 Committer: Josh Elser <els...@apache.org> Committed: Sun Oct 5 21:13:53 2014 -0400 ---------------------------------------------------------------------- .../apache/accumulo/test/functional/SimpleBalancerFairnessIT.java | 3 +++ 1 file changed, 3 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/accumulo/blob/44bf5ed2/test/src/test/java/org/apache/accumulo/test/functional/SimpleBalancerFairnessIT.java ---------------------------------------------------------------------- diff --git a/test/src/test/java/org/apache/accumulo/test/functional/SimpleBalancerFairnessIT.java b/test/src/test/java/org/apache/accumulo/test/functional/SimpleBalancerFairnessIT.java index 7d37615..966c150 100644 --- a/test/src/test/java/org/apache/accumulo/test/functional/SimpleBalancerFairnessIT.java +++ b/test/src/test/java/org/apache/accumulo/test/functional/SimpleBalancerFairnessIT.java @@ -36,6 +36,8 @@ import org.apache.accumulo.core.master.thrift.TableInfo; import org.apache.accumulo.core.master.thrift.TabletServerStatus; import org.apache.accumulo.core.security.Credentials; 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.accumulo.trace.instrument.Tracer; @@ -51,6 +53,7 @@ public class SimpleBalancerFairnessIT extends ConfigurableMacIT { siteConfig.put(Property.TSERV_MAXMEM.getKey(), "10K"); siteConfig.put(Property.TSERV_MAJC_DELAY.getKey(), "0"); cfg.setSiteConfig(siteConfig); + cfg.setMemory(ServerType.TABLET_SERVER, cfg.getMemory(ServerType.TABLET_SERVER) * 3, MemoryUnit.BYTE); } @Override