From commits-return-16728-archive-asf-public=cust-asf.ponee.io@flink.apache.org Wed Apr 4 15:31:01 2018 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx-eu-01.ponee.io (Postfix) with SMTP id 7BEED18064F for ; Wed, 4 Apr 2018 15:31:00 +0200 (CEST) Received: (qmail 10366 invoked by uid 500); 4 Apr 2018 13:30:59 -0000 Mailing-List: contact commits-help@flink.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@flink.apache.org Delivered-To: mailing list commits@flink.apache.org Received: (qmail 10357 invoked by uid 99); 4 Apr 2018 13:30:59 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 04 Apr 2018 13:30:59 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 61413F17C8; Wed, 4 Apr 2018 13:30:59 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: chesnay@apache.org To: commits@flink.apache.org Date: Wed, 04 Apr 2018 13:30:59 -0000 Message-Id: <4c09acb003774c6e88038cf8ed36f45b@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [01/19] flink git commit: [hotfix][tests] Properly disable JoinCancelingITCase Repository: flink Updated Branches: refs/heads/release-1.5 515069e14 -> c7d0f4768 [hotfix][tests] Properly disable JoinCancelingITCase Project: http://git-wip-us.apache.org/repos/asf/flink/repo Commit: http://git-wip-us.apache.org/repos/asf/flink/commit/1c98e364 Tree: http://git-wip-us.apache.org/repos/asf/flink/tree/1c98e364 Diff: http://git-wip-us.apache.org/repos/asf/flink/diff/1c98e364 Branch: refs/heads/release-1.5 Commit: 1c98e3641a6c191e10e0fa3636eb92e984e8ddb8 Parents: 20d7af7 Author: zentol Authored: Wed Feb 28 13:43:42 2018 +0100 Committer: zentol Committed: Wed Apr 4 08:59:18 2018 +0200 ---------------------------------------------------------------------- .../test/cancelling/JoinCancelingITCase.java | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flink/blob/1c98e364/flink-tests/src/test/java/org/apache/flink/test/cancelling/JoinCancelingITCase.java ---------------------------------------------------------------------- diff --git a/flink-tests/src/test/java/org/apache/flink/test/cancelling/JoinCancelingITCase.java b/flink-tests/src/test/java/org/apache/flink/test/cancelling/JoinCancelingITCase.java index 66919e7..7288ba5 100644 --- a/flink-tests/src/test/java/org/apache/flink/test/cancelling/JoinCancelingITCase.java +++ b/flink-tests/src/test/java/org/apache/flink/test/cancelling/JoinCancelingITCase.java @@ -30,9 +30,13 @@ import org.apache.flink.runtime.operators.testutils.UniformIntTupleGenerator; import org.apache.flink.test.util.InfiniteIntegerTupleInputFormat; import org.apache.flink.test.util.UniformIntTupleGeneratorInputFormat; +import org.junit.Ignore; +import org.junit.Test; + /** * Test job cancellation from within a JoinFunction. */ +@Ignore("Takes too long.") public class JoinCancelingITCase extends CancelingTestBase { // --------------- Test Sort Matches that are canceled while still reading / sorting ----------------- @@ -56,17 +60,17 @@ public class JoinCancelingITCase extends CancelingTestBase { runAndCancelJob(env.createProgramPlan(), 5 * 1000, 10 * 1000); } -// @Test + @Test public void testCancelSortMatchWhileReadingSlowInputs() throws Exception { executeTask(new SimpleMatcher(), true); } -// @Test + @Test public void testCancelSortMatchWhileReadingFastInputs() throws Exception { executeTask(new SimpleMatcher(), false); } -// @Test + @Test public void testCancelSortMatchPriorToFirstRecordReading() throws Exception { executeTask(new StuckInOpenMatcher(), false); } @@ -90,26 +94,26 @@ public class JoinCancelingITCase extends CancelingTestBase { runAndCancelJob(env.createProgramPlan(), msecsTillCanceling, maxTimeTillCanceled); } -// @Test + @Test public void testCancelSortMatchWhileDoingHeavySorting() throws Exception { executeTaskWithGenerator(new SimpleMatcher(), 50000, 100, 30 * 1000, 30 * 1000); } // --------------- Test Sort Matches that are canceled while in the Matching Phase ----------------- -// @Test + @Test public void testCancelSortMatchWhileJoining() throws Exception { executeTaskWithGenerator(new DelayingMatcher(), 500, 3, 10 * 1000, 20 * 1000); } -// @Test + @Test public void testCancelSortMatchWithLongCancellingResponse() throws Exception { executeTaskWithGenerator(new LongCancelTimeMatcher(), 500, 3, 10 * 1000, 10 * 1000); } // -------------------------------------- Test System corner cases --------------------------------- -// @Test + @Test public void testCancelSortMatchWithHighparallelism() throws Exception { executeTask(new SimpleMatcher(), false, 64); }