yujun777 commented on code in PR #28079: URL: https://github.com/apache/doris/pull/28079#discussion_r1427627805
########## fe/fe-core/src/main/java/org/apache/doris/master/ReportHandler.java: ########## @@ -510,6 +510,16 @@ public static void tabletReport(long backendId, Map<Long, TTablet> backendTablet LOG.info("finished to handle tablet report from backend[{}] cost: {} ms", backendId, (end - start)); } + private static void updateControlPublishVersion(long backendId, Map<TTaskType, Set<Long>> runningTasks) { + if (!runningTasks.containsKey(TTaskType.PUBLISH_VERSION)) { + return; + } + LOG.debug("current beId {} - {} - {}", + backendId, runningTasks, runningTasks.get(TTaskType.PUBLISH_VERSION).size()); Review Comment: Log the publish version task count at the end of function 'taskReport' -- 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...@doris.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org