IMPALA-4868: Disable flaky TestRequestPoolService test Disables a test that seemed to get flaky recently, perhaps related to testing with Java 8 or maybe even changes in YARN (which get used by RequestPoolService).
Since we're not changing this code right now, let's disable this test to unblock builds. Keeping the JIRA open to track a better solution. Change-Id: I616961457cd48d31d618c8b58f5279b89d3cdcd6 Reviewed-on: http://gerrit.cloudera.org:8080/7466 Reviewed-by: Matthew Jacobs <[email protected]> Tested-by: Impala Public Jenkins Project: http://git-wip-us.apache.org/repos/asf/incubator-impala/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-impala/commit/34d9a79c Tree: http://git-wip-us.apache.org/repos/asf/incubator-impala/tree/34d9a79c Diff: http://git-wip-us.apache.org/repos/asf/incubator-impala/diff/34d9a79c Branch: refs/heads/master Commit: 34d9a79c599950fd06ea53cce157994b265a97eb Parents: d0bf413 Author: Matthew Jacobs <[email protected]> Authored: Wed Jul 19 16:52:13 2017 -0700 Committer: Impala Public Jenkins <[email protected]> Committed: Thu Jul 20 10:15:00 2017 +0000 ---------------------------------------------------------------------- .../test/java/org/apache/impala/util/TestRequestPoolService.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-impala/blob/34d9a79c/fe/src/test/java/org/apache/impala/util/TestRequestPoolService.java ---------------------------------------------------------------------- diff --git a/fe/src/test/java/org/apache/impala/util/TestRequestPoolService.java b/fe/src/test/java/org/apache/impala/util/TestRequestPoolService.java index 7c7e9da..e849a81 100644 --- a/fe/src/test/java/org/apache/impala/util/TestRequestPoolService.java +++ b/fe/src/test/java/org/apache/impala/util/TestRequestPoolService.java @@ -25,6 +25,7 @@ import java.net.URISyntaxException; import org.apache.hadoop.yarn.server.resourcemanager.scheduler.fair.AllocationFileLoaderService; import org.junit.After; import org.junit.Assert; +import org.junit.Ignore; import org.junit.Rule; import org.junit.Test; import org.junit.rules.TemporaryFolder; @@ -186,7 +187,7 @@ public class TestRequestPoolService { checkPoolConfigResult("root", -1, 200, -1); } - @Test + @Ignore("IMPALA-4868") @Test public void testUpdatingConfigs() throws Exception { // Tests updating the config files and then checking the pool resolution, ACLs, and // pool limit configs. This tests all three together rather than separating into
