rmdmattingly commented on code in PR #6722:
URL: https://github.com/apache/hbase/pull/6722#discussion_r1971681814
##########
hbase-balancer/src/main/java/org/apache/hadoop/hbase/master/balancer/SlopFixingCandidateGenerator.java:
##########
@@ -63,6 +64,13 @@ BalanceAction generateCandidate(BalancerClusterState
cluster, boolean isWeighing
List<MoveRegionAction> moves = new ArrayList<>();
Set<ServerAndLoad> fixedServers = new HashSet<>();
for (int sourceServer : sloppyServerIndices) {
+ if (
+ isTableIsolationEnabled
+ && getBalancerConditionals().isServerHostingIsolatedTables(cluster,
sourceServer)
+ ) {
+ // Don't fix sloppiness of servers hosting isolated tables
Review Comment:
We don't have anything similar for metrics. I'll think about whether that
would be difficult to implement
--
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]