qianye1001 commented on code in PR #9162: URL: https://github.com/apache/rocketmq/pull/9162#discussion_r1946039987
########## broker/src/main/java/org/apache/rocketmq/broker/processor/AdminBrokerProcessor.java: ########## @@ -487,15 +496,16 @@ private RemotingCommand updateAndGetGroupForbidden(ChannelHandlerContext ctx, Re private RemotingCommand checkRocksdbCqWriteProgress(ChannelHandlerContext ctx, RemotingCommand request) { CheckRocksdbCqWriteResult result = new CheckRocksdbCqWriteResult(); result.setCheckStatus(CheckRocksdbCqWriteResult.CheckStatus.CHECK_IN_PROGRESS.getValue()); - Runnable runnable = () -> { + + CompletableFuture<CheckRocksdbCqWriteResult> future = CompletableFuture.supplyAsync(() -> { try { - CheckRocksdbCqWriteResult checkResult = doCheckRocksdbCqWriteProgress(ctx, request); - LOGGER.info("checkRocksdbCqWriteProgress result: {}", JSON.toJSONString(checkResult)); + return doCheckRocksdbCqWriteProgress(ctx, request); } catch (Exception e) { - LOGGER.error("checkRocksdbCqWriteProgress error", e); + throw new CompletionException(e); } - }; - asyncExecuteWorker.submit(runnable); + }, asyncExecuteWorker); + + asyncTaskManager.createTask("checkRocksdbCqWriteProgress", future); Review Comment: return task id -- 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: commits-unsubscr...@rocketmq.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org