You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@flink.apache.org by GitBox <gi...@apache.org> on 2022/07/02 14:22:05 UTC

[GitHub] [flink] 1996fanrui opened a new pull request, #20137: Just for CI

1996fanrui opened a new pull request, #20137:
URL: https://github.com/apache/flink/pull/20137

   Just for CI, please ignore


-- 
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-unsubscribe@flink.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [flink] 1996fanrui commented on a diff in pull request #20137: Just for CI

Posted by GitBox <gi...@apache.org>.
1996fanrui commented on code in PR #20137:
URL: https://github.com/apache/flink/pull/20137#discussion_r1032795523


##########
flink-runtime/src/main/java/org/apache/flink/runtime/checkpoint/channel/ChannelStateWriteRequestExecutorImpl.java:
##########
@@ -125,11 +162,72 @@ public void start() throws IllegalStateException {
 
     @Override
     public void submit(ChannelStateWriteRequest request) throws Exception {
-        submitInternal(request, () -> deque.add(request));
+        BlockingQueue<ChannelStateWriteRequest> unreadyQueue =
+                unreadyQueues.get(
+                        SubtaskID.of(
+                                request.getJobID(),
+                                request.getJobVertexID(),
+                                request.getSubtaskIndex()));
+        checkState(unreadyQueue != null, "The subtask %s is not yet registered");
+        submitInternal(
+                request,
+                () -> {
+                    synchronized (unreadyQueue) {
+                        // 1. unreadyQueue isn't empty, the new request must keep the order, so add
+                        // the new request to the unreadyQueue tail.
+                        if (!unreadyQueue.isEmpty()) {
+                            unreadyQueue.add(request);
+                            return;
+                        }
+                        // 2. unreadyQueue is empty, and new request is ready, so add it to the
+                        // readyQueue.
+                        if (request.getReadyFuture().isDone()) {
+                            deque.add(request);
+                            return;
+                        }
+                        // 3. unreadyQueue is empty, and new request isn't ready, so add it to the
+                        // readyQueue,
+                        // and register it as the first request.
+                        unreadyQueue.add(request);
+                        registerFirstRequestFuture(request, unreadyQueue);
+                    }
+                });
+    }
+
+    private void registerFirstRequestFuture(
+            @Nonnull ChannelStateWriteRequest firstRequest,
+            BlockingQueue<ChannelStateWriteRequest> unreadyQueue) {
+        assert Thread.holdsLock(unreadyQueue);
+        checkState(firstRequest == unreadyQueue.peek(), "The request isn't the first request.");
+        firstRequest
+                .getReadyFuture()
+                .thenAccept(o -> moveReadyRequestToReadyQueue(unreadyQueue, firstRequest))
+                .exceptionally(
+                        throwable -> {
+                            moveReadyRequestToReadyQueue(unreadyQueue, firstRequest);
+                            return null;
+                        });

Review Comment:
   When dataFuture is completed, just move the request to readyQueue. 
   
   And if the dataFuture isCompletedExceptionally, the `writer.fail` will be called later. You can take a look `ChannelStateWriteRequest#buildFutureWriteRequest.`, so I don't think the exception needs be handled here.
   
   ```
   static ChannelStateWriteRequest buildFutureWriteRequest(
           JobID jobID,
           JobVertexID jobVertexID,
           int subtaskIndex,
           long checkpointId,
           String name,
           CompletableFuture<List<Buffer>> dataFuture,
           BiConsumer<ChannelStateCheckpointWriter, Buffer> bufferConsumer) {
       return new CheckpointInProgressRequest(
               name,
               jobID,
               jobVertexID,
               subtaskIndex,
               checkpointId,
               writer -> {
                   checkState(
                           dataFuture.isDone(), "It should be executed when dataFuture is done.");
                   List<Buffer> buffers;
                   try {
                       buffers = dataFuture.get();
                   } catch (ExecutionException e) {
                       // If dataFuture fails, fail only the single related writer
                       writer.fail(jobID, jobVertexID, subtaskIndex, e);
                       return;
                   }
                   for (Buffer buffer : buffers) {
                       checkBufferIsBuffer(buffer);
                       bufferConsumer.accept(writer, buffer);
                   }
               },
               throwable ->
                       dataFuture.thenAccept(
                               buffers -> {
                                   try {
                                       CloseableIterator.fromList(buffers, Buffer::recycleBuffer)
                                               .close();
                                   } catch (Exception e) {
                                       LOG.error(
                                               "Failed to recycle the output buffer of channel state.",
                                               e);
                                   }
                               }),
               dataFuture);
   }
   ```



-- 
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-unsubscribe@flink.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [flink] 1996fanrui commented on pull request #20137: Just for CI

Posted by GitBox <gi...@apache.org>.
1996fanrui commented on PR #20137:
URL: https://github.com/apache/flink/pull/20137#issuecomment-1207117441

   @flinkbot run azur


-- 
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-unsubscribe@flink.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [flink] 1996fanrui commented on pull request #20137: Just for CI

Posted by GitBox <gi...@apache.org>.
1996fanrui commented on PR #20137:
URL: https://github.com/apache/flink/pull/20137#issuecomment-1172925904

   @flinkbot run azure


-- 
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-unsubscribe@flink.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [flink] 1996fanrui commented on pull request #20137: Just for CI

Posted by GitBox <gi...@apache.org>.
1996fanrui commented on PR #20137:
URL: https://github.com/apache/flink/pull/20137#issuecomment-1206453077

   @flinkbot run azure


-- 
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-unsubscribe@flink.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [flink] 1996fanrui commented on pull request #20137: Just for CI

Posted by GitBox <gi...@apache.org>.
1996fanrui commented on PR #20137:
URL: https://github.com/apache/flink/pull/20137#issuecomment-1172926135

   @flinkbot run azure


-- 
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-unsubscribe@flink.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [flink] pnowojski commented on a diff in pull request #20137: Just for CI

Posted by GitBox <gi...@apache.org>.
pnowojski commented on code in PR #20137:
URL: https://github.com/apache/flink/pull/20137#discussion_r1033474743


##########
flink-runtime/src/main/java/org/apache/flink/runtime/checkpoint/channel/ChannelStateWriteRequestExecutorImpl.java:
##########
@@ -125,11 +162,72 @@ public void start() throws IllegalStateException {
 
     @Override
     public void submit(ChannelStateWriteRequest request) throws Exception {
-        submitInternal(request, () -> deque.add(request));
+        BlockingQueue<ChannelStateWriteRequest> unreadyQueue =
+                unreadyQueues.get(
+                        SubtaskID.of(
+                                request.getJobID(),
+                                request.getJobVertexID(),
+                                request.getSubtaskIndex()));
+        checkState(unreadyQueue != null, "The subtask %s is not yet registered");
+        submitInternal(
+                request,
+                () -> {
+                    synchronized (unreadyQueue) {
+                        // 1. unreadyQueue isn't empty, the new request must keep the order, so add
+                        // the new request to the unreadyQueue tail.
+                        if (!unreadyQueue.isEmpty()) {
+                            unreadyQueue.add(request);
+                            return;
+                        }
+                        // 2. unreadyQueue is empty, and new request is ready, so add it to the
+                        // readyQueue.
+                        if (request.getReadyFuture().isDone()) {
+                            deque.add(request);
+                            return;
+                        }
+                        // 3. unreadyQueue is empty, and new request isn't ready, so add it to the
+                        // readyQueue,
+                        // and register it as the first request.
+                        unreadyQueue.add(request);
+                        registerFirstRequestFuture(request, unreadyQueue);
+                    }
+                });
+    }
+
+    private void registerFirstRequestFuture(
+            @Nonnull ChannelStateWriteRequest firstRequest,
+            BlockingQueue<ChannelStateWriteRequest> unreadyQueue) {
+        assert Thread.holdsLock(unreadyQueue);
+        checkState(firstRequest == unreadyQueue.peek(), "The request isn't the first request.");
+        firstRequest
+                .getReadyFuture()
+                .thenAccept(o -> moveReadyRequestToReadyQueue(unreadyQueue, firstRequest))
+                .exceptionally(
+                        throwable -> {
+                            moveReadyRequestToReadyQueue(unreadyQueue, firstRequest);
+                            return null;
+                        });

Review Comment:
   Thanks for the explanation. Can you add a comment explaining that?



-- 
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-unsubscribe@flink.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [flink] flinkbot commented on pull request #20137: Just for CI

Posted by GitBox <gi...@apache.org>.
flinkbot commented on PR #20137:
URL: https://github.com/apache/flink/pull/20137#issuecomment-1172907225

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "17bd0f47f33a29684763296956c4fc6f69e82052",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "17bd0f47f33a29684763296956c4fc6f69e82052",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 17bd0f47f33a29684763296956c4fc6f69e82052 UNKNOWN
   
   <details>
   <summary>Bot commands</summary>
     The @flinkbot bot supports the following commands:
   
    - `@flinkbot run azure` re-run the last Azure build
   </details>


-- 
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-unsubscribe@flink.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [flink] 1996fanrui commented on pull request #20137: Just for CI

Posted by GitBox <gi...@apache.org>.
1996fanrui commented on PR #20137:
URL: https://github.com/apache/flink/pull/20137#issuecomment-1207117567

   @flinkbot run azure


-- 
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-unsubscribe@flink.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [flink] 1996fanrui commented on pull request #20137: Just for CI

Posted by GitBox <gi...@apache.org>.
1996fanrui commented on PR #20137:
URL: https://github.com/apache/flink/pull/20137#issuecomment-1172924828

   @flinkbot run azure


-- 
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-unsubscribe@flink.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [flink] 1996fanrui commented on pull request #20137: Just for CI

Posted by GitBox <gi...@apache.org>.
1996fanrui commented on PR #20137:
URL: https://github.com/apache/flink/pull/20137#issuecomment-1207171318

   @flinkbot run azure


-- 
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-unsubscribe@flink.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [flink] 1996fanrui commented on pull request #20137: Just for CI

Posted by GitBox <gi...@apache.org>.
1996fanrui commented on PR #20137:
URL: https://github.com/apache/flink/pull/20137#issuecomment-1173588527

   @flinkbot run azure


-- 
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-unsubscribe@flink.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [flink] 1996fanrui commented on pull request #20137: Just for CI

Posted by GitBox <gi...@apache.org>.
1996fanrui commented on PR #20137:
URL: https://github.com/apache/flink/pull/20137#issuecomment-1179729808

   @flinkbot run azure


-- 
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-unsubscribe@flink.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [flink] pnowojski commented on a diff in pull request #20137: Just for CI

Posted by GitBox <gi...@apache.org>.
pnowojski commented on code in PR #20137:
URL: https://github.com/apache/flink/pull/20137#discussion_r1032479797


##########
flink-runtime/src/main/java/org/apache/flink/runtime/checkpoint/channel/ChannelStateWriteRequestExecutorImpl.java:
##########
@@ -51,27 +64,46 @@ class ChannelStateWriteRequestExecutorImpl implements ChannelStateWriteRequestEx
     private final Thread thread;
     private volatile Exception thrown = null;
     private volatile boolean wasClosed = false;
-    private final String taskName;
+
+    private final Map<SubtaskID, BlockingQueue<ChannelStateWriteRequest>> unreadyQueues =
+            new ConcurrentHashMap<>();
+
+    private final JobID jobID;
+    private final Set<SubtaskID> subtasks;
+    private final AtomicBoolean isRegistering = new AtomicBoolean(true);

Review Comment:
   Is this used for anything else than `checkState`/`checkArgument` calls?



##########
flink-runtime/src/main/java/org/apache/flink/runtime/checkpoint/channel/ChannelStateWriteRequestExecutorImpl.java:
##########
@@ -125,11 +162,72 @@ public void start() throws IllegalStateException {
 
     @Override
     public void submit(ChannelStateWriteRequest request) throws Exception {
-        submitInternal(request, () -> deque.add(request));
+        BlockingQueue<ChannelStateWriteRequest> unreadyQueue =
+                unreadyQueues.get(
+                        SubtaskID.of(
+                                request.getJobID(),
+                                request.getJobVertexID(),
+                                request.getSubtaskIndex()));
+        checkState(unreadyQueue != null, "The subtask %s is not yet registered");
+        submitInternal(
+                request,
+                () -> {
+                    synchronized (unreadyQueue) {
+                        // 1. unreadyQueue isn't empty, the new request must keep the order, so add
+                        // the new request to the unreadyQueue tail.
+                        if (!unreadyQueue.isEmpty()) {
+                            unreadyQueue.add(request);
+                            return;
+                        }
+                        // 2. unreadyQueue is empty, and new request is ready, so add it to the
+                        // readyQueue.
+                        if (request.getReadyFuture().isDone()) {
+                            deque.add(request);
+                            return;
+                        }
+                        // 3. unreadyQueue is empty, and new request isn't ready, so add it to the
+                        // readyQueue,
+                        // and register it as the first request.
+                        unreadyQueue.add(request);
+                        registerFirstRequestFuture(request, unreadyQueue);
+                    }
+                });
+    }
+
+    private void registerFirstRequestFuture(
+            @Nonnull ChannelStateWriteRequest firstRequest,
+            BlockingQueue<ChannelStateWriteRequest> unreadyQueue) {
+        assert Thread.holdsLock(unreadyQueue);
+        checkState(firstRequest == unreadyQueue.peek(), "The request isn't the first request.");
+        firstRequest
+                .getReadyFuture()
+                .thenAccept(o -> moveReadyRequestToReadyQueue(unreadyQueue, firstRequest))
+                .exceptionally(
+                        throwable -> {
+                            moveReadyRequestToReadyQueue(unreadyQueue, firstRequest);
+                            return null;
+                        });

Review Comment:
   Shouldn't you handle this error somehow? Fail this executor and propagate it to the subtasks?



##########
flink-runtime/src/main/java/org/apache/flink/runtime/checkpoint/channel/ChannelStateWriteRequestExecutorImpl.java:
##########
@@ -51,27 +64,46 @@ class ChannelStateWriteRequestExecutorImpl implements ChannelStateWriteRequestEx
     private final Thread thread;
     private volatile Exception thrown = null;
     private volatile boolean wasClosed = false;
-    private final String taskName;
+
+    private final Map<SubtaskID, BlockingQueue<ChannelStateWriteRequest>> unreadyQueues =
+            new ConcurrentHashMap<>();
+
+    private final JobID jobID;
+    private final Set<SubtaskID> subtasks;
+    private final AtomicBoolean isRegistering = new AtomicBoolean(true);

Review Comment:
   There is `BlockingQueue`, two `volatile`, `ConcurrentHashMap` and `AtomicBoolean`. I think that's a bit too much and it should be all replaced with a single `synchronized (this)` or `private finla Object lock = new Object();` and later `synchronized (lock)` combined with non-thread safe queue, Exception, boolean and Map.



-- 
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-unsubscribe@flink.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [flink] 1996fanrui commented on a diff in pull request #20137: Just for CI

Posted by GitBox <gi...@apache.org>.
1996fanrui commented on code in PR #20137:
URL: https://github.com/apache/flink/pull/20137#discussion_r1032794990


##########
flink-runtime/src/main/java/org/apache/flink/runtime/checkpoint/channel/ChannelStateWriteRequestExecutorImpl.java:
##########
@@ -51,27 +64,46 @@ class ChannelStateWriteRequestExecutorImpl implements ChannelStateWriteRequestEx
     private final Thread thread;
     private volatile Exception thrown = null;
     private volatile boolean wasClosed = false;
-    private final String taskName;
+
+    private final Map<SubtaskID, BlockingQueue<ChannelStateWriteRequest>> unreadyQueues =
+            new ConcurrentHashMap<>();
+
+    private final JobID jobID;
+    private final Set<SubtaskID> subtasks;
+    private final AtomicBoolean isRegistering = new AtomicBoolean(true);

Review Comment:
   It's used in `ChannelStateWriteRequestExecutorFactory#getOrCreateExecutor`.
   
   When the executor has 5 tasks, the  `isRegistering` will be changed to false. Factory will create a new Executor later.



-- 
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-unsubscribe@flink.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [flink] 1996fanrui commented on pull request #20137: Just for CI

Posted by GitBox <gi...@apache.org>.
1996fanrui commented on PR #20137:
URL: https://github.com/apache/flink/pull/20137#issuecomment-1181464354

   @flinkbot run azure


-- 
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-unsubscribe@flink.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [flink] 1996fanrui commented on pull request #20137: Just for CI

Posted by GitBox <gi...@apache.org>.
1996fanrui commented on PR #20137:
URL: https://github.com/apache/flink/pull/20137#issuecomment-1184011752

   @flinkbot run azure


-- 
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-unsubscribe@flink.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [flink] 1996fanrui commented on pull request #20137: Just for CI

Posted by GitBox <gi...@apache.org>.
1996fanrui commented on PR #20137:
URL: https://github.com/apache/flink/pull/20137#issuecomment-1177084314

   @flinkbot run azure


-- 
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-unsubscribe@flink.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [flink] 1996fanrui commented on pull request #20137: Just for CI

Posted by GitBox <gi...@apache.org>.
1996fanrui commented on PR #20137:
URL: https://github.com/apache/flink/pull/20137#issuecomment-1181305318

   @flinkbot run azure


-- 
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-unsubscribe@flink.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [flink] 1996fanrui commented on pull request #20137: Just for CI

Posted by GitBox <gi...@apache.org>.
1996fanrui commented on PR #20137:
URL: https://github.com/apache/flink/pull/20137#issuecomment-1172930650

   @flinkbot run azure


-- 
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-unsubscribe@flink.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [flink] 1996fanrui commented on pull request #20137: Just for CI

Posted by GitBox <gi...@apache.org>.
1996fanrui commented on PR #20137:
URL: https://github.com/apache/flink/pull/20137#issuecomment-1207188696

   @flinkbot run azure


-- 
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-unsubscribe@flink.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [flink] 1996fanrui commented on pull request #20137: Just for CI

Posted by GitBox <gi...@apache.org>.
1996fanrui commented on PR #20137:
URL: https://github.com/apache/flink/pull/20137#issuecomment-1301579975

   @flinkbot run azure


-- 
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-unsubscribe@flink.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [flink] 1996fanrui commented on pull request #20137: Just for CI

Posted by GitBox <gi...@apache.org>.
1996fanrui commented on PR #20137:
URL: https://github.com/apache/flink/pull/20137#issuecomment-1186214145

   @flinkbot run azure


-- 
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-unsubscribe@flink.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [flink] 1996fanrui commented on pull request #20137: Just for CI

Posted by GitBox <gi...@apache.org>.
1996fanrui commented on PR #20137:
URL: https://github.com/apache/flink/pull/20137#issuecomment-1186476938

   @flinkbot run azure


-- 
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-unsubscribe@flink.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [flink] 1996fanrui commented on pull request #20137: Just for CI

Posted by GitBox <gi...@apache.org>.
1996fanrui commented on PR #20137:
URL: https://github.com/apache/flink/pull/20137#issuecomment-1206678119

   @flinkbot run azure


-- 
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-unsubscribe@flink.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [flink] 1996fanrui commented on pull request #20137: Just for CI

Posted by GitBox <gi...@apache.org>.
1996fanrui commented on PR #20137:
URL: https://github.com/apache/flink/pull/20137#issuecomment-1179643729

   @flinkbot run azure


-- 
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-unsubscribe@flink.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [flink] 1996fanrui commented on pull request #20137: Just for CI

Posted by GitBox <gi...@apache.org>.
1996fanrui commented on PR #20137:
URL: https://github.com/apache/flink/pull/20137#issuecomment-1181439886

   @flinkbot run azure


-- 
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-unsubscribe@flink.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


Re: [PR] Just for CI [flink]

Posted by "1996fanrui (via GitHub)" <gi...@apache.org>.
1996fanrui closed pull request #20137: Just for CI
URL: https://github.com/apache/flink/pull/20137


-- 
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-unsubscribe@flink.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org