yujun777 commented on code in PR #27968:
URL: https://github.com/apache/doris/pull/27968#discussion_r1416586475


##########
fe/fe-core/src/main/java/org/apache/doris/system/SystemInfoService.java:
##########
@@ -1010,4 +1016,52 @@ public int getMinPipelineExecutorSize() {
     public long aliveBECount() {
         return 
idToBackendRef.values().stream().filter(Backend::isAlive).count();
     }
+
+    public ImmutableMap<Long, Set<Long>> getControlCloneFailedMap() {
+        return backendIdToCloneFailedTimes;
+    }
+
+    public void updateLastPublishVersionFailedMap(Long backendId, Boolean 
isFailed) {
+        Map<Long, Boolean> copiedMap = 
Maps.newHashMap(backendIdLastTimesIsAccumulated);
+        copiedMap.put(backendId, isFailed);
+        backendIdLastTimesIsAccumulated = ImmutableMap.copyOf(copiedMap);
+    }
+
+    public void updateControlMaps(Long backendId, Map<Long, Set<Long>> map) {

Review Comment:
   this set maybe too big ?



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

Reply via email to