|
@@ -72,6 +72,7 @@ import org.apache.hadoop.mapreduce.v2.app.job.TaskAttempt;
|
|
import org.apache.hadoop.mapreduce.v2.app.job.event.JobEvent;
|
|
import org.apache.hadoop.mapreduce.v2.app.job.event.JobEvent;
|
|
import org.apache.hadoop.mapreduce.v2.app.job.event.JobEventType;
|
|
import org.apache.hadoop.mapreduce.v2.app.job.event.JobEventType;
|
|
import org.apache.hadoop.mapreduce.v2.app.job.event.TaskAttemptContainerAssignedEvent;
|
|
import org.apache.hadoop.mapreduce.v2.app.job.event.TaskAttemptContainerAssignedEvent;
|
|
|
|
+import org.apache.hadoop.mapreduce.v2.app.job.event.TaskAttemptContainerLaunchedEvent;
|
|
import org.apache.hadoop.mapreduce.v2.app.job.event.TaskAttemptDiagnosticsUpdateEvent;
|
|
import org.apache.hadoop.mapreduce.v2.app.job.event.TaskAttemptDiagnosticsUpdateEvent;
|
|
import org.apache.hadoop.mapreduce.v2.app.job.event.TaskAttemptEvent;
|
|
import org.apache.hadoop.mapreduce.v2.app.job.event.TaskAttemptEvent;
|
|
import org.apache.hadoop.mapreduce.v2.app.job.event.TaskAttemptEventType;
|
|
import org.apache.hadoop.mapreduce.v2.app.job.event.TaskAttemptEventType;
|
|
@@ -450,6 +451,121 @@ public class TestTaskAttempt{
|
|
assertFalse(eventHandler.internalError);
|
|
assertFalse(eventHandler.internalError);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ @Test
|
|
|
|
+ public void testContainerCleanedWhileRunning() throws Exception {
|
|
|
|
+ ApplicationId appId = BuilderUtils.newApplicationId(1, 2);
|
|
|
|
+ ApplicationAttemptId appAttemptId =
|
|
|
|
+ BuilderUtils.newApplicationAttemptId(appId, 0);
|
|
|
|
+ JobId jobId = MRBuilderUtils.newJobId(appId, 1);
|
|
|
|
+ TaskId taskId = MRBuilderUtils.newTaskId(jobId, 1, TaskType.MAP);
|
|
|
|
+ TaskAttemptId attemptId = MRBuilderUtils.newTaskAttemptId(taskId, 0);
|
|
|
|
+ Path jobFile = mock(Path.class);
|
|
|
|
+
|
|
|
|
+ MockEventHandler eventHandler = new MockEventHandler();
|
|
|
|
+ TaskAttemptListener taListener = mock(TaskAttemptListener.class);
|
|
|
|
+ when(taListener.getAddress()).thenReturn(new InetSocketAddress("localhost", 0));
|
|
|
|
+
|
|
|
|
+ JobConf jobConf = new JobConf();
|
|
|
|
+ jobConf.setClass("fs.file.impl", StubbedFS.class, FileSystem.class);
|
|
|
|
+ jobConf.setBoolean("fs.file.impl.disable.cache", true);
|
|
|
|
+ jobConf.set(JobConf.MAPRED_MAP_TASK_ENV, "");
|
|
|
|
+ jobConf.set(MRJobConfig.APPLICATION_ATTEMPT_ID, "10");
|
|
|
|
+
|
|
|
|
+ TaskSplitMetaInfo splits = mock(TaskSplitMetaInfo.class);
|
|
|
|
+ when(splits.getLocations()).thenReturn(new String[] {"127.0.0.1"});
|
|
|
|
+
|
|
|
|
+ AppContext appCtx = mock(AppContext.class);
|
|
|
|
+ ClusterInfo clusterInfo = mock(ClusterInfo.class);
|
|
|
|
+ Resource resource = mock(Resource.class);
|
|
|
|
+ when(appCtx.getClusterInfo()).thenReturn(clusterInfo);
|
|
|
|
+ when(clusterInfo.getMinContainerCapability()).thenReturn(resource);
|
|
|
|
+ when(resource.getMemory()).thenReturn(1024);
|
|
|
|
+
|
|
|
|
+ TaskAttemptImpl taImpl =
|
|
|
|
+ new MapTaskAttemptImpl(taskId, 1, eventHandler, jobFile, 1,
|
|
|
|
+ splits, jobConf, taListener,
|
|
|
|
+ mock(OutputCommitter.class), mock(Token.class), new Credentials(),
|
|
|
|
+ new SystemClock(), appCtx);
|
|
|
|
+
|
|
|
|
+ NodeId nid = BuilderUtils.newNodeId("127.0.0.1", 0);
|
|
|
|
+ ContainerId contId = BuilderUtils.newContainerId(appAttemptId, 3);
|
|
|
|
+ Container container = mock(Container.class);
|
|
|
|
+ when(container.getId()).thenReturn(contId);
|
|
|
|
+ when(container.getNodeId()).thenReturn(nid);
|
|
|
|
+ when(container.getNodeHttpAddress()).thenReturn("localhost:0");
|
|
|
|
+
|
|
|
|
+ taImpl.handle(new TaskAttemptEvent(attemptId,
|
|
|
|
+ TaskAttemptEventType.TA_SCHEDULE));
|
|
|
|
+ taImpl.handle(new TaskAttemptContainerAssignedEvent(attemptId,
|
|
|
|
+ container, mock(Map.class)));
|
|
|
|
+ taImpl.handle(new TaskAttemptContainerLaunchedEvent(attemptId, 0));
|
|
|
|
+ assertEquals("Task attempt is not in running state", taImpl.getState(),
|
|
|
|
+ TaskAttemptState.RUNNING);
|
|
|
|
+ taImpl.handle(new TaskAttemptEvent(attemptId,
|
|
|
|
+ TaskAttemptEventType.TA_CONTAINER_CLEANED));
|
|
|
|
+ assertFalse("InternalError occurred trying to handle TA_CONTAINER_CLEANED",
|
|
|
|
+ eventHandler.internalError);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ @Test
|
|
|
|
+ public void testContainerCleanedWhileCommitting() throws Exception {
|
|
|
|
+ ApplicationId appId = BuilderUtils.newApplicationId(1, 2);
|
|
|
|
+ ApplicationAttemptId appAttemptId =
|
|
|
|
+ BuilderUtils.newApplicationAttemptId(appId, 0);
|
|
|
|
+ JobId jobId = MRBuilderUtils.newJobId(appId, 1);
|
|
|
|
+ TaskId taskId = MRBuilderUtils.newTaskId(jobId, 1, TaskType.MAP);
|
|
|
|
+ TaskAttemptId attemptId = MRBuilderUtils.newTaskAttemptId(taskId, 0);
|
|
|
|
+ Path jobFile = mock(Path.class);
|
|
|
|
+
|
|
|
|
+ MockEventHandler eventHandler = new MockEventHandler();
|
|
|
|
+ TaskAttemptListener taListener = mock(TaskAttemptListener.class);
|
|
|
|
+ when(taListener.getAddress()).thenReturn(new InetSocketAddress("localhost", 0));
|
|
|
|
+
|
|
|
|
+ JobConf jobConf = new JobConf();
|
|
|
|
+ jobConf.setClass("fs.file.impl", StubbedFS.class, FileSystem.class);
|
|
|
|
+ jobConf.setBoolean("fs.file.impl.disable.cache", true);
|
|
|
|
+ jobConf.set(JobConf.MAPRED_MAP_TASK_ENV, "");
|
|
|
|
+ jobConf.set(MRJobConfig.APPLICATION_ATTEMPT_ID, "10");
|
|
|
|
+
|
|
|
|
+ TaskSplitMetaInfo splits = mock(TaskSplitMetaInfo.class);
|
|
|
|
+ when(splits.getLocations()).thenReturn(new String[] {"127.0.0.1"});
|
|
|
|
+
|
|
|
|
+ AppContext appCtx = mock(AppContext.class);
|
|
|
|
+ ClusterInfo clusterInfo = mock(ClusterInfo.class);
|
|
|
|
+ Resource resource = mock(Resource.class);
|
|
|
|
+ when(appCtx.getClusterInfo()).thenReturn(clusterInfo);
|
|
|
|
+ when(clusterInfo.getMinContainerCapability()).thenReturn(resource);
|
|
|
|
+ when(resource.getMemory()).thenReturn(1024);
|
|
|
|
+
|
|
|
|
+ TaskAttemptImpl taImpl =
|
|
|
|
+ new MapTaskAttemptImpl(taskId, 1, eventHandler, jobFile, 1,
|
|
|
|
+ splits, jobConf, taListener,
|
|
|
|
+ mock(OutputCommitter.class), mock(Token.class), new Credentials(),
|
|
|
|
+ new SystemClock(), appCtx);
|
|
|
|
+
|
|
|
|
+ NodeId nid = BuilderUtils.newNodeId("127.0.0.1", 0);
|
|
|
|
+ ContainerId contId = BuilderUtils.newContainerId(appAttemptId, 3);
|
|
|
|
+ Container container = mock(Container.class);
|
|
|
|
+ when(container.getId()).thenReturn(contId);
|
|
|
|
+ when(container.getNodeId()).thenReturn(nid);
|
|
|
|
+ when(container.getNodeHttpAddress()).thenReturn("localhost:0");
|
|
|
|
+
|
|
|
|
+ taImpl.handle(new TaskAttemptEvent(attemptId,
|
|
|
|
+ TaskAttemptEventType.TA_SCHEDULE));
|
|
|
|
+ taImpl.handle(new TaskAttemptContainerAssignedEvent(attemptId,
|
|
|
|
+ container, mock(Map.class)));
|
|
|
|
+ taImpl.handle(new TaskAttemptContainerLaunchedEvent(attemptId, 0));
|
|
|
|
+ taImpl.handle(new TaskAttemptEvent(attemptId,
|
|
|
|
+ TaskAttemptEventType.TA_COMMIT_PENDING));
|
|
|
|
+
|
|
|
|
+ assertEquals("Task attempt is not in commit pending state", taImpl.getState(),
|
|
|
|
+ TaskAttemptState.COMMIT_PENDING);
|
|
|
|
+ taImpl.handle(new TaskAttemptEvent(attemptId,
|
|
|
|
+ TaskAttemptEventType.TA_CONTAINER_CLEANED));
|
|
|
|
+ assertFalse("InternalError occurred trying to handle TA_CONTAINER_CLEANED",
|
|
|
|
+ eventHandler.internalError);
|
|
|
|
+ }
|
|
|
|
+
|
|
public static class MockEventHandler implements EventHandler {
|
|
public static class MockEventHandler implements EventHandler {
|
|
public boolean internalError;
|
|
public boolean internalError;
|
|
|
|
|