You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@hbase.apache.org by GitBox <gi...@apache.org> on 2021/08/27 00:20:02 UTC

[GitHub] [hbase] caroliney14 commented on a change in pull request #3610: HBASE-26163 Better logging in RSGroupInfoManagerImpl

caroliney14 commented on a change in pull request #3610:
URL: https://github.com/apache/hbase/pull/3610#discussion_r697061076



##########
File path: hbase-server/src/main/java/org/apache/hadoop/hbase/rsgroup/RSGroupInfoManagerImpl.java
##########
@@ -1205,6 +1221,7 @@ private void moveTablesAndWait(Set<TableName> tables, String targetGroup) throws
       ProcedureSyncWait.waitForProcedureToCompleteIOE(masterServices.getMasterProcedureExecutor(),
           proc, Long.MAX_VALUE);
     }
+    LOG.info("Move tables done. Moved {} tables to {}: {}", tables.size(), targetGroup, tables);

Review comment:
       done

##########
File path: hbase-server/src/main/java/org/apache/hadoop/hbase/rsgroup/RSGroupInfoManagerImpl.java
##########
@@ -1270,7 +1287,8 @@ public void moveServers(Set<Address> servers, String targetGroupName) throws IOE
       Set<Address> movedServers = moveServers(servers, srcGrp.getName(),
           targetGroupName);
       moveServerRegionsFromGroup(movedServers, srcGrp.getServers(), targetGroupName, srcGrp.getName());
-      LOG.info("Move servers done: {} => {}", srcGrp.getName(), targetGroupName);
+      LOG.info("Move servers done. Moved {} servers from {} => {}: {}", movedServers.size(),

Review comment:
       done




-- 
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: issues-unsubscribe@hbase.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org