Repository: tez Updated Branches: refs/heads/master 6b43887d6 -> 894d5edd4
TEZ-2827. Increase timeout for TestFetcher testInputAttemptIdentifierMap (rbalamohan) Project: http://git-wip-us.apache.org/repos/asf/tez/repo Commit: http://git-wip-us.apache.org/repos/asf/tez/commit/894d5edd Tree: http://git-wip-us.apache.org/repos/asf/tez/tree/894d5edd Diff: http://git-wip-us.apache.org/repos/asf/tez/diff/894d5edd Branch: refs/heads/master Commit: 894d5edd40b7c95e21520e3f62fe681f51f4eb9a Parents: 6b43887 Author: Rajesh Balamohan <[email protected]> Authored: Wed Sep 16 11:08:21 2015 +0530 Committer: Rajesh Balamohan <[email protected]> Committed: Wed Sep 16 11:08:21 2015 +0530 ---------------------------------------------------------------------- CHANGES.txt | 1 + .../org/apache/tez/runtime/library/common/shuffle/TestFetcher.java | 2 +- .../runtime/library/common/shuffle/orderedgrouped/TestFetcher.java | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/tez/blob/894d5edd/CHANGES.txt ---------------------------------------------------------------------- diff --git a/CHANGES.txt b/CHANGES.txt index 76059c6..0770ee5 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -7,6 +7,7 @@ Release 0.8.1: Unreleased INCOMPATIBLE CHANGES ALL CHANGES: + TEZ-2827. Increase timeout for TestFetcher testInputAttemptIdentifierMap TEZ-2774. Improvements and cleanup of logging for the AM and parts of the runtme. TEZ-2825. Report progress in terms of completed tasks to reduce load on AM for Tez UI TEZ-2812. Tez UI: Update task & attempt tables while in progress. http://git-wip-us.apache.org/repos/asf/tez/blob/894d5edd/tez-runtime-library/src/test/java/org/apache/tez/runtime/library/common/shuffle/TestFetcher.java ---------------------------------------------------------------------- diff --git a/tez-runtime-library/src/test/java/org/apache/tez/runtime/library/common/shuffle/TestFetcher.java b/tez-runtime-library/src/test/java/org/apache/tez/runtime/library/common/shuffle/TestFetcher.java index 42b957b..917dbcb 100644 --- a/tez-runtime-library/src/test/java/org/apache/tez/runtime/library/common/shuffle/TestFetcher.java +++ b/tez-runtime-library/src/test/java/org/apache/tez/runtime/library/common/shuffle/TestFetcher.java @@ -233,7 +233,7 @@ public class TestFetcher { Assert.assertEquals("success callback type", f.getType(), FetchedInput.Type.DISK_DIRECT); } - @Test(timeout=1000) + @Test(timeout=5000) public void testInputAttemptIdentifierMap() { InputAttemptIdentifier[] srcAttempts = { new InputAttemptIdentifier(new InputIdentifier(0), 1, InputAttemptIdentifier.PATH_PREFIX + "pathComponent_0", http://git-wip-us.apache.org/repos/asf/tez/blob/894d5edd/tez-runtime-library/src/test/java/org/apache/tez/runtime/library/common/shuffle/orderedgrouped/TestFetcher.java ---------------------------------------------------------------------- diff --git a/tez-runtime-library/src/test/java/org/apache/tez/runtime/library/common/shuffle/orderedgrouped/TestFetcher.java b/tez-runtime-library/src/test/java/org/apache/tez/runtime/library/common/shuffle/orderedgrouped/TestFetcher.java index 7415570..ceb0266 100644 --- a/tez-runtime-library/src/test/java/org/apache/tez/runtime/library/common/shuffle/orderedgrouped/TestFetcher.java +++ b/tez-runtime-library/src/test/java/org/apache/tez/runtime/library/common/shuffle/orderedgrouped/TestFetcher.java @@ -481,7 +481,7 @@ public class TestFetcher { } } - @Test(timeout = 1000) + @Test(timeout = 5000) public void testInputAttemptIdentifierMap() { InputAttemptIdentifier[] srcAttempts = { new InputAttemptIdentifier(new InputIdentifier(0), 1, InputAttemptIdentifier.PATH_PREFIX + "pathComponent_0",
