rkhachatryan commented on a change in pull request #10345: 
[FLINK-12484][runtime] synchronize all mailbox actions
URL: https://github.com/apache/flink/pull/10345#discussion_r353443775
 
 

 ##########
 File path: 
flink-streaming-java/src/test/java/org/apache/flink/streaming/runtime/tasks/StreamTaskExecutionDecorationTest.java
 ##########
 @@ -0,0 +1,172 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *    http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package org.apache.flink.streaming.runtime.tasks;
+
+import org.apache.flink.runtime.checkpoint.CheckpointMetaData;
+import org.apache.flink.runtime.checkpoint.CheckpointOptions;
+import org.apache.flink.runtime.checkpoint.CheckpointType;
+import org.apache.flink.runtime.state.CheckpointStorageLocationReference;
+import org.apache.flink.runtime.util.FatalExitExceptionHandler;
+import org.apache.flink.streaming.api.operators.StreamOperator;
+import org.apache.flink.streaming.runtime.tasks.mailbox.Mail;
+import org.apache.flink.streaming.runtime.tasks.mailbox.MailboxDefaultAction;
+import org.apache.flink.util.function.ThrowingRunnable;
+
+import org.junit.After;
+import org.junit.Assert;
+import org.junit.Before;
+import org.junit.Test;
+
+import java.util.concurrent.Callable;
+import java.util.concurrent.CountDownLatch;
+import java.util.concurrent.atomic.AtomicInteger;
+
+/**
+ * Verifies that {@link StreamTask} {@link StreamTaskActionExecutor decorates 
execution} of actions that potentially needs to be synchronized.
+ */
+public class StreamTaskExecutionDecorationTest {
+       private CountingStreamTaskActionExecutor decorator;
+       private StreamTask<Object, StreamOperator<Object>> task;
+
+       @Test
+       public void testAbortCheckpointOnBarrierIsDecorated() throws Exception {
+               task.abortCheckpointOnBarrier(1, null);
+               verify();
+       }
+
+       @Test
+       public void testTriggerCheckpointOnBarrierIsDecorated() throws 
Exception {
+               task.triggerCheckpointOnBarrier(new CheckpointMetaData(1, 2), 
new CheckpointOptions(CheckpointType.CHECKPOINT, new 
CheckpointStorageLocationReference(new byte[]{1})), null);
+               verify();
+       }
+
+       @Test
+       public void testTriggerCheckpointAsyncIsDecorated() throws Exception {
+               task.triggerCheckpointAsync(new CheckpointMetaData(1, 2), new 
CheckpointOptions(CheckpointType.CHECKPOINT, new 
CheckpointStorageLocationReference(new byte[]{1})), false);
+               new Thread(() -> {
+                       try {
+                               Thread.sleep(50);
+                       } catch (InterruptedException ex) {
+                               ex.printStackTrace();
+                       } finally {
+                               task.mailboxProcessor.allActionsCompleted();
+                       }
+               }).start();
+               task.mailboxProcessor.runMailboxLoop();
+               verify();
+       }
+
+       @Test
+       public void testMailboxExecutorIsDecorated() throws Exception {
+               CountDownLatch latch = new CountDownLatch(1);
+               
task.mailboxProcessor.getMainMailboxExecutor().asExecutor("test").execute(() -> 
{
+                       try {
+                               verify();
+                       } finally {
+                               latch.countDown();
+                       }
+               });
+               new Thread(() -> {
+                       try {
+                               latch.await();
+                               task.mailboxProcessor.allActionsCompleted();
+                       } catch (Exception ex) {
+                               ex.printStackTrace();
+                       }
+               }).start();
+               task.mailboxProcessor.runMailboxLoop();
+       }
+
+       @Before
+       public void before() {
+               decorator = new CountingStreamTaskActionExecutor();
+               task = new StreamTask<Object, StreamOperator<Object>>(new 
StreamTaskTest.DeclineDummyEnvironment(), null, 
FatalExitExceptionHandler.INSTANCE, decorator) {
+                       @Override
+                       protected void init() {
+                       }
+
+                       @Override
+                       protected void 
processInput(MailboxDefaultAction.Controller controller) {
+                       }
+               };
+       }
+
+       private void verify() {
+               Assert.assertTrue("execution decorator was not called", 
decorator.wasCalled());
+       }
+
+       @After
+       public void after() {
+               decorator = null;
+               task = null;
+       }
+
+       @SuppressWarnings("CatchMayIgnoreException")
+       static class CountingStreamTaskActionExecutor extends 
StreamTaskActionExecutor.SynchronizedStreamTaskActionExecutor {
+               private AtomicInteger calls = new AtomicInteger(0);
+
+               CountingStreamTaskActionExecutor() {
+                       super(new Object());
+               }
+
+               int getCallCount() {
+                       return calls.get();
+               }
+
+               boolean wasCalled() {
+                       return getCallCount() > 0;
+               }
+
+               @Override
+               public void run(Runnable runnable) {
+                       calls.incrementAndGet();
+                       try {
+                               runnable.run();
+                       } catch (Exception e) {
 
 Review comment:
   Addressed by proper task initialization.

----------------------------------------------------------------
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.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

Reply via email to