mirror of
https://github.com/google/nomulus
synced 2026-01-11 08:20:27 +00:00
Reduce mapreduce shards in tests
This fixes a significant memory consumption issue when running tests. ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=129482832
This commit is contained in:
committed by
Justine Tunney
parent
1ef8716177
commit
92fa0d6781
@@ -71,7 +71,7 @@ public class ExpandRecurringBillingEventsActionTest
|
||||
@Before
|
||||
public void init() {
|
||||
action = new ExpandRecurringBillingEventsAction();
|
||||
action.mrRunner = new MapreduceRunner(Optional.<Integer>absent(), Optional.<Integer>absent());
|
||||
action.mrRunner = new MapreduceRunner(Optional.<Integer>of(5), Optional.<Integer>absent());
|
||||
action.clock = clock;
|
||||
action.cursorTimeParam = Optional.absent();
|
||||
createTld("tld");
|
||||
|
||||
@@ -71,7 +71,7 @@ public abstract class DeleteEppResourceActionTestCase<T extends DeleteEppResourc
|
||||
|
||||
public void setupDeleteEppResourceAction(T deleteEppResourceAction) throws Exception {
|
||||
action = deleteEppResourceAction;
|
||||
action.mrRunner = new MapreduceRunner(Optional.<Integer>absent(), Optional.<Integer>absent());
|
||||
action.mrRunner = new MapreduceRunner(Optional.<Integer>of(5), Optional.<Integer>absent());
|
||||
action.response = new FakeResponse();
|
||||
action.clock = clock;
|
||||
inject.setStaticField(Ofy.class, "clock", clock);
|
||||
|
||||
@@ -65,7 +65,7 @@ public class DnsRefreshForHostRenameActionTest
|
||||
private void runMapreduce(String hostKeyString) throws Exception {
|
||||
action = new DnsRefreshForHostRenameAction();
|
||||
action.hostKeyString = hostKeyString;
|
||||
action.mrRunner = new MapreduceRunner(Optional.<Integer>absent(), Optional.<Integer>absent());
|
||||
action.mrRunner = new MapreduceRunner(Optional.<Integer>of(5), Optional.<Integer>absent());
|
||||
action.response = new FakeResponse();
|
||||
action.run();
|
||||
executeTasksUntilEmpty("mapreduce");
|
||||
|
||||
@@ -74,7 +74,7 @@ public class DeleteProberDataActionTest extends MapreduceTestCase<DeleteProberDa
|
||||
persistResource(Registry.get("oa-canary.test").asBuilder().setTldType(TldType.TEST).build());
|
||||
|
||||
action = new DeleteProberDataAction();
|
||||
action.mrRunner = new MapreduceRunner(Optional.<Integer>absent(), Optional.<Integer>absent());
|
||||
action.mrRunner = new MapreduceRunner(Optional.<Integer>of(5), Optional.<Integer>absent());
|
||||
action.response = new FakeResponse();
|
||||
action.isDryRun = false;
|
||||
}
|
||||
|
||||
@@ -37,7 +37,7 @@ public class ResaveAllEppResourcesActionTest
|
||||
@Before
|
||||
public void init() {
|
||||
action = new ResaveAllEppResourcesAction();
|
||||
action.mrRunner = new MapreduceRunner(Optional.<Integer>absent(), Optional.<Integer>absent());
|
||||
action.mrRunner = new MapreduceRunner(Optional.<Integer>of(5), Optional.<Integer>absent());
|
||||
action.response = new FakeResponse();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user