File tree Expand file tree Collapse file tree 1 file changed +7
-0
lines changed
hbase-server/src/main/java/org/apache/hadoop/hbase/master/assignment Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -1425,6 +1425,13 @@ protected void update(final AssignmentManager am) {
14251425 this .statTimestamp = EnvironmentEdgeManager .currentTime ();
14261426 update (regionStates .getRegionsStateInTransition (), statTimestamp );
14271427 update (regionStates .getRegionFailedOpen (), statTimestamp );
1428+
1429+ if (LOG .isDebugEnabled () && ritsOverThreshold != null && !ritsOverThreshold .isEmpty ()) {
1430+ LOG .debug ("RITs over threshold: {}" ,
1431+ ritsOverThreshold .entrySet ().stream ()
1432+ .map (e -> e .getKey () + ":" + e .getValue ().getState ().name ())
1433+ .collect (Collectors .joining ("\n " )));
1434+ }
14281435 }
14291436
14301437 private void update (final Collection <RegionState > regions , final long currentTime ) {
You can’t perform that action at this time.
0 commit comments