zentol commented on code in PR #19935:
URL: https://github.com/apache/flink/pull/19935#discussion_r915840596


##########
flink-core/src/main/java/org/apache/flink/api/common/io/OutputFormatBase.java:
##########
@@ -97,21 +108,35 @@ private void tryAcquire(int permits) throws IOException {
         }
     }
 
+    /**
+     * Asynchronously write a record and deal with {@link 
OutputFormatBase#maxConcurrentRequests}.
+     * To specify how a record is written, please override the {@link 
OutputFormatBase#send(Object)}
+     * method.
+     */
     @Override
-    public void writeRecord(OUT record) throws IOException {
+    public final void writeRecord(OUT record) throws IOException {
         checkAsyncErrors();
         tryAcquire(1);
-        final ListenableFuture<V> result;
+        final CompletionStage<V> result;
         try {
             result = send(record);
         } catch (Throwable e) {
             semaphore.release();
             throw e;
         }
-        Futures.addCallback(result, callback);
+        Futures.addCallback(
+                
completableFutureToListenableFuture(result.toCompletableFuture()),
+                callback,
+                Executors.directExecutor());

Review Comment:
   ```
       @Test
       void testFutureCompletion() throws InterruptedException {
           CompletableFuture<String> future = new CompletableFuture<>();
   
           future.whenComplete((s, ignored) -> System.out.println(s));
   
           final Thread thread = new Thread(() -> future.complete("sup"));
           thread.start();
           thread.join();
       }
   ```



-- 
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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to