codelipenghui commented on code in PR #21542:
URL: https://github.com/apache/pulsar/pull/21542#discussion_r1389058313


##########
managed-ledger/src/main/java/org/apache/bookkeeper/mledger/impl/ManagedLedgerImpl.java:
##########
@@ -4052,33 +4051,40 @@ protected void asyncCreateLedger(BookKeeper bookKeeper, 
ManagedLedgerConfig conf
                 ));
             } catch 
(EnsemblePlacementPolicyConfig.ParseEnsemblePlacementPolicyConfigException e) {
                 log.error("[{}] Serialize the placement configuration failed", 
name, e);
-                cb.createComplete(Code.UnexpectedConditionException, null, 
ledgerCreated);
+                cb.createComplete(Code.UnexpectedConditionException, null, 
ledgerFutureHook);
                 return;
             }
         }
         createdLedgerCustomMetadata = finalMetadata;
-
         try {
             bookKeeper.asyncCreateLedger(config.getEnsembleSize(), 
config.getWriteQuorumSize(),
-                    config.getAckQuorumSize(), digestType, 
config.getPassword(), cb, ledgerCreated, finalMetadata);
+                    config.getAckQuorumSize(), digestType, 
config.getPassword(), cb, ledgerFutureHook, finalMetadata);
         } catch (Throwable cause) {
             log.error("[{}] Encountered unexpected error when creating ledger",
                 name, cause);
-            cb.createComplete(Code.UnexpectedConditionException, null, 
ledgerCreated);
+            ledgerFutureHook.completeExceptionally(cause);
+            cb.createComplete(Code.UnexpectedConditionException, null, 
ledgerFutureHook);
             return;
         }
-        scheduledExecutor.schedule(() -> {
-            if (!ledgerCreated.get()) {
+
+        ScheduledFuture timeoutChecker = scheduledExecutor.schedule(() -> {
+            if (ledgerFutureHook.completeExceptionally(new 
TimeoutException(name + " Create ledger timeout"))) {
                 if (log.isDebugEnabled()) {
                     log.debug("[{}] Timeout creating ledger", name);
                 }
-                cb.createComplete(BKException.Code.TimeoutException, null, 
ledgerCreated);
+                cb.createComplete(BKException.Code.TimeoutException, null, 
ledgerFutureHook);
             } else {
                 if (log.isDebugEnabled()) {
                     log.debug("[{}] Ledger already created when timeout task 
is triggered", name);
                 }
             }
         }, config.getMetadataOperationsTimeoutSeconds(), TimeUnit.SECONDS);
+
+        ledgerFutureHook.whenComplete((ignore, ex) -> {
+            if (!timeoutChecker.isDone()) {

Review Comment:
   From the API description
   
   ```
   /**
        * Attempts to cancel execution of this task.  This method has no
        * effect if the task is already completed or cancelled, or could
        * not be cancelled for some other reason.  Otherwise, if this
        * task has not started when {@code cancel} is called, this task
        * should never run.  If the task has already started, then the
        * {@code mayInterruptIfRunning} parameter determines whether the
        * thread executing this task (when known by the implementation)
        * is interrupted in an attempt to stop the task.
   ```
   
   It looks like we don't need this check.



-- 
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