yujun777 commented on code in PR #28079:
URL: https://github.com/apache/doris/pull/28079#discussion_r1427625698
##########
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:
even log is debug, runningTasks toString will still execute, and it's time
cost. remove debug log here
--
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]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]