HBASE-16289 AsyncProcess stuck messages need to print region/server
This commit is contained in:
parent
66fb697f81
commit
ab9df0a014
|
@ -1682,7 +1682,11 @@ class AsyncProcess {
|
|||
if (!hasWait) { // Only log if wait is infinite.
|
||||
if (now > lastLog + 10000) {
|
||||
lastLog = now;
|
||||
LOG.info("#" + id + ", waiting for " + currentInProgress + " actions to finish");
|
||||
LOG.info("#" + id + ", waiting for " + currentInProgress
|
||||
+ " actions to finish on table: " + tableName);
|
||||
if (currentInProgress <= thresholdToLogUndoneTaskDetails) {
|
||||
logDetailsOfUndoneTasks(currentInProgress);
|
||||
}
|
||||
}
|
||||
}
|
||||
synchronized (actionsInProgress) {
|
||||
|
|
Loading…
Reference in New Issue