You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iceberg.apache.org by ru...@apache.org on 2021/09/14 13:46:58 UTC

[iceberg] branch master updated: Flink - Temporarily Ignore test that leads to infinite checkpoint loop and CI timeouts (#3110)

This is an automated email from the ASF dual-hosted git repository.

russellspitzer pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/iceberg.git


The following commit(s) were added to refs/heads/master by this push:
     new 33096ce  Flink - Temporarily Ignore test that leads to infinite checkpoint loop and CI timeouts (#3110)
33096ce is described below

commit 33096ce76d22d1713f9e28afea8035ea27486f80
Author: Kyle Bendickson <98...@users.noreply.github.com>
AuthorDate: Tue Sep 14 06:46:49 2021 -0700

    Flink - Temporarily Ignore test that leads to infinite checkpoint loop and CI timeouts (#3110)
---
 .../test/java/org/apache/iceberg/flink/sink/TestFlinkIcebergSink.java   | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/flink/src/test/java/org/apache/iceberg/flink/sink/TestFlinkIcebergSink.java b/flink/src/test/java/org/apache/iceberg/flink/sink/TestFlinkIcebergSink.java
index 51fa121..043ba91 100644
--- a/flink/src/test/java/org/apache/iceberg/flink/sink/TestFlinkIcebergSink.java
+++ b/flink/src/test/java/org/apache/iceberg/flink/sink/TestFlinkIcebergSink.java
@@ -49,6 +49,7 @@ import org.apache.iceberg.relocated.com.google.common.collect.Lists;
 import org.junit.Assert;
 import org.junit.Before;
 import org.junit.ClassRule;
+import org.junit.Ignore;
 import org.junit.Test;
 import org.junit.rules.TemporaryFolder;
 import org.junit.runner.RunWith;
@@ -264,6 +265,7 @@ public class TestFlinkIcebergSink {
   }
 
   @Test
+  @Ignore  // Ignored as one DAG completing first can cause an infinite checkpoint loop in the other and CI timeouts
   public void testTwoSinksInDisjointedDAG() throws Exception {
     Map<String, String> props = ImmutableMap.of(TableProperties.DEFAULT_FILE_FORMAT, format.name());