MAPREDUCE-5525. Merging change r1526624 from trunk to branch-2.
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-2@1526625 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
16794494d3
commit
6bdd4791db
|
@ -87,6 +87,9 @@ Release 2.1.2 - UNRELEASED
|
|||
MAPREDUCE-5170. Fixed a wrong log message in CombineFileInputFormat class.
|
||||
(Sangjin Lee via vinodkv)
|
||||
|
||||
MAPREDUCE-5525. Increase timeout of TestDFSIO.testAppend and
|
||||
TestMRJobsWithHistoryService.testJobHistoryData. (Chuan Liu via cnauroth)
|
||||
|
||||
Release 2.1.1-beta - 2013-09-23
|
||||
|
||||
INCOMPATIBLE CHANGES
|
||||
|
|
|
@ -270,7 +270,7 @@ public class TestDFSIO implements Tool {
|
|||
bench.analyzeResult(fs, TestType.TEST_TYPE_READ_SKIP, execTime);
|
||||
}
|
||||
|
||||
@Test (timeout = 3000)
|
||||
@Test (timeout = 6000)
|
||||
public void testAppend() throws Exception {
|
||||
FileSystem fs = cluster.getFileSystem();
|
||||
long tStart = System.currentTimeMillis();
|
||||
|
|
|
@ -111,7 +111,7 @@ public class TestMRJobsWithHistoryService {
|
|||
}
|
||||
}
|
||||
|
||||
@Test (timeout = 30000)
|
||||
@Test (timeout = 90000)
|
||||
public void testJobHistoryData() throws IOException, InterruptedException,
|
||||
AvroRemoteException, ClassNotFoundException {
|
||||
if (!(new File(MiniMRYarnCluster.APPJAR)).exists()) {
|
||||
|
|
Loading…
Reference in New Issue