MAPREDUCE-5743. Fixed the test failure in TestRMContainerAllocator. Contributed by Vinod Kumar Vavilapalli.
svn merge --ignore-ancestry -c 1565087 ../../trunk/ git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-2@1565088 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
e7e5df5b0b
commit
5afaafdb7f
|
@ -208,6 +208,9 @@ Release 2.3.0 - UNRELEASED
|
||||||
MAPREDUCE-5723. MR AM container log can be truncated or empty.
|
MAPREDUCE-5723. MR AM container log can be truncated or empty.
|
||||||
(Mohammad Kamrul Islam via kasha)
|
(Mohammad Kamrul Islam via kasha)
|
||||||
|
|
||||||
|
MAPREDUCE-5743. Fixed the test failure in TestRMContainerAllocator.
|
||||||
|
(Vinod Kumar Vavilapalli via zjshen)
|
||||||
|
|
||||||
Release 2.2.0 - 2013-10-13
|
Release 2.2.0 - 2013-10-13
|
||||||
|
|
||||||
INCOMPATIBLE CHANGES
|
INCOMPATIBLE CHANGES
|
||||||
|
|
|
@ -1648,8 +1648,16 @@ public class TestRMContainerAllocator {
|
||||||
RMApp app = rm.submitApp(1024);
|
RMApp app = rm.submitApp(1024);
|
||||||
dispatcher.await();
|
dispatcher.await();
|
||||||
|
|
||||||
|
// Make a node to register so as to launch the AM.
|
||||||
|
MockNM amNodeManager = rm.registerNode("amNM:1234", 2048);
|
||||||
|
amNodeManager.nodeHeartbeat(true);
|
||||||
|
dispatcher.await();
|
||||||
|
|
||||||
ApplicationAttemptId appAttemptId = app.getCurrentAppAttempt()
|
ApplicationAttemptId appAttemptId = app.getCurrentAppAttempt()
|
||||||
.getAppAttemptId();
|
.getAppAttemptId();
|
||||||
|
rm.sendAMLaunched(appAttemptId);
|
||||||
|
dispatcher.await();
|
||||||
|
|
||||||
JobId jobId = MRBuilderUtils.newJobId(appAttemptId.getApplicationId(), 0);
|
JobId jobId = MRBuilderUtils.newJobId(appAttemptId.getApplicationId(), 0);
|
||||||
Job job = mock(Job.class);
|
Job job = mock(Job.class);
|
||||||
when(job.getReport()).thenReturn(
|
when(job.getReport()).thenReturn(
|
||||||
|
|
Loading…
Reference in New Issue