HBASE-21595, Print thread's information and stack traces when RS is aborting forcibly
This commit is contained in:
parent
0fd4243fcd
commit
bc0fb66e22
|
@ -3849,7 +3849,8 @@ public class HRegionServer extends HasThread implements
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void run() {
|
public void run() {
|
||||||
LOG.warn("Aborting region server timed out, terminate forcibly...");
|
LOG.warn("Aborting region server timed out, terminating forcibly. Thread dump to stdout.");
|
||||||
|
Threads.printThreadInfo(System.out, "Zombie HRegionServer");
|
||||||
System.exit(1);
|
System.exit(1);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue