pvary commented on code in PR #10393: URL: https://github.com/apache/iceberg/pull/10393#discussion_r1619334747
########## flink/v1.19/flink/src/test/java/org/apache/iceberg/flink/source/TestIcebergSourceFailover.java: ########## @@ -333,28 +336,28 @@ private static void restartTaskManager(Runnable afterFailAction, MiniCluster min private static class RecordCounterToFail { private static AtomicInteger records; - private static CompletableFuture<Void> fail; + private static CountDownLatch countDownLatch; private static CompletableFuture<Void> continueProcessing; private static <T> DataStream<T> wrapWithFailureAfter(DataStream<T> stream, int failAfter) { records = new AtomicInteger(); - fail = new CompletableFuture<>(); continueProcessing = new CompletableFuture<>(); + countDownLatch = new CountDownLatch(stream.getParallelism()); Review Comment: Tested with checkpoints. The static variables are "global" in the sense, that they are shared between every instance in the JVM. So the latch is used for both operator instances. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org For additional commands, e-mail: issues-h...@iceberg.apache.org