TEZ-2342. TestFaultTolerance.testRandomFailingTasks fails due to timeout. (Jeff 
Zhang via hitesh)


Project: http://git-wip-us.apache.org/repos/asf/tez/repo
Commit: http://git-wip-us.apache.org/repos/asf/tez/commit/21d4e2df
Tree: http://git-wip-us.apache.org/repos/asf/tez/tree/21d4e2df
Diff: http://git-wip-us.apache.org/repos/asf/tez/diff/21d4e2df

Branch: refs/heads/TEZ-2003
Commit: 21d4e2df057e807b57dcc4ef1c5d4bd6b8801d33
Parents: 3c150cd
Author: Hitesh Shah <[email protected]>
Authored: Mon Apr 27 12:00:34 2015 -0700
Committer: Hitesh Shah <[email protected]>
Committed: Mon Apr 27 12:00:34 2015 -0700

----------------------------------------------------------------------
 CHANGES.txt                                                      | 1 +
 .../src/test/java/org/apache/tez/test/TestFaultTolerance.java    | 4 ++--
 2 files changed, 3 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tez/blob/21d4e2df/CHANGES.txt
----------------------------------------------------------------------
diff --git a/CHANGES.txt b/CHANGES.txt
index b90f468..e78ee7e 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -9,6 +9,7 @@ INCOMPATIBLE CHANGES
   TEZ-1993. Implement a pluggable InputSizeEstimator for grouping fairly
 
 ALL CHANGES:
+  TEZ-2342. TestFaultTolerance.testRandomFailingTasks fails due to timeout.
   TEZ-2362. State Change Notifier Thread should be stopped when dag is
   completed
   TEZ-2364. Resolve config parameter replacement on the client, before sending 
them to the AM.

http://git-wip-us.apache.org/repos/asf/tez/blob/21d4e2df/tez-tests/src/test/java/org/apache/tez/test/TestFaultTolerance.java
----------------------------------------------------------------------
diff --git 
a/tez-tests/src/test/java/org/apache/tez/test/TestFaultTolerance.java 
b/tez-tests/src/test/java/org/apache/tez/test/TestFaultTolerance.java
index ac39a87..d03dd18 100644
--- a/tez-tests/src/test/java/org/apache/tez/test/TestFaultTolerance.java
+++ b/tez-tests/src/test/java/org/apache/tez/test/TestFaultTolerance.java
@@ -714,7 +714,7 @@ public class TestFaultTolerance {
     runDAGAndVerify(dag, DAGStatus.State.SUCCEEDED);
   }
   
-  @Test (timeout=120000)
+  @Test (timeout=240000)
   public void testRandomFailingTasks() throws Exception {
     Configuration testConf = new Configuration(false);
     testConf.setBoolean(TestProcessor.TEZ_FAILING_PROCESSOR_DO_RANDOM_FAIL, 
true);
@@ -723,7 +723,7 @@ public class TestFaultTolerance {
     runDAGAndVerify(dag, DAGStatus.State.SUCCEEDED);
   }
   
-  @Test (timeout=60000)
+  @Test (timeout=240000)
   public void testRandomFailingInputs() throws Exception {
     Configuration testConf = new Configuration(false);
     testConf.setBoolean(TestInput.TEZ_FAILING_INPUT_DO_RANDOM_FAIL, true);

Reply via email to