Signed-off-by: Duo Zhang <zhangduo@apache.org> Signed-off-by: Geoffrey Jacoby <gjacoby@apache.org> Signed-off-by: Viraj Jasani <vjasani@apache.org>
This commit is contained in:
parent
f5af7611c0
commit
1408c044b1
|
@ -25,10 +25,12 @@ import java.lang.Thread.UncaughtExceptionHandler;
|
||||||
import java.lang.reflect.InvocationTargetException;
|
import java.lang.reflect.InvocationTargetException;
|
||||||
import java.lang.reflect.Method;
|
import java.lang.reflect.Method;
|
||||||
import java.nio.charset.StandardCharsets;
|
import java.nio.charset.StandardCharsets;
|
||||||
|
import java.util.Set;
|
||||||
import java.util.concurrent.LinkedBlockingQueue;
|
import java.util.concurrent.LinkedBlockingQueue;
|
||||||
import java.util.concurrent.ThreadFactory;
|
import java.util.concurrent.ThreadFactory;
|
||||||
import java.util.concurrent.ThreadPoolExecutor;
|
import java.util.concurrent.ThreadPoolExecutor;
|
||||||
import java.util.concurrent.TimeUnit;
|
import java.util.concurrent.TimeUnit;
|
||||||
|
import java.util.concurrent.atomic.AtomicInteger;
|
||||||
import org.apache.hadoop.util.ReflectionUtils;
|
import org.apache.hadoop.util.ReflectionUtils;
|
||||||
import org.apache.hadoop.util.StringUtils;
|
import org.apache.hadoop.util.StringUtils;
|
||||||
import org.apache.yetus.audience.InterfaceAudience;
|
import org.apache.yetus.audience.InterfaceAudience;
|
||||||
|
@ -266,4 +268,33 @@ public class Threads {
|
||||||
Preconditions.checkNotNull(PrintThreadInfoLazyHolder.HELPER,
|
Preconditions.checkNotNull(PrintThreadInfoLazyHolder.HELPER,
|
||||||
"Cannot find method. Check hadoop jars linked").printThreadInfo(stream, title);
|
"Cannot find method. Check hadoop jars linked").printThreadInfo(stream, title);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Checks whether any non-daemon thread is running.
|
||||||
|
* @return true if there are non daemon threads running, otherwise false
|
||||||
|
*/
|
||||||
|
public static boolean isNonDaemonThreadRunning() {
|
||||||
|
AtomicInteger nonDaemonThreadCount = new AtomicInteger();
|
||||||
|
Set<Thread> threads = Thread.getAllStackTraces().keySet();
|
||||||
|
threads.forEach(t -> {
|
||||||
|
// Exclude current thread
|
||||||
|
if (t.getId() != Thread.currentThread().getId() && !t.isDaemon()) {
|
||||||
|
nonDaemonThreadCount.getAndIncrement();
|
||||||
|
LOG.info("Non daemon thread {} is still alive", t.getName());
|
||||||
|
LOG.info(printStackTrace(t));
|
||||||
|
}
|
||||||
|
});
|
||||||
|
return nonDaemonThreadCount.get() > 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
Print stack trace of the passed thread
|
||||||
|
*/
|
||||||
|
public static String printStackTrace(Thread t) {
|
||||||
|
StringBuilder sb = new StringBuilder();
|
||||||
|
for (StackTraceElement frame: t.getStackTrace()) {
|
||||||
|
sb.append("\n").append(" ").append(frame.toString());
|
||||||
|
}
|
||||||
|
return sb.toString();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -36,6 +36,7 @@ import org.apache.yetus.audience.InterfaceAudience;
|
||||||
|
|
||||||
import org.slf4j.Logger;
|
import org.slf4j.Logger;
|
||||||
import org.slf4j.LoggerFactory;
|
import org.slf4j.LoggerFactory;
|
||||||
|
import static org.apache.hadoop.hbase.util.Threads.isNonDaemonThreadRunning;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Base class for command lines that start up various HBase daemons.
|
* Base class for command lines that start up various HBase daemons.
|
||||||
|
@ -141,8 +142,10 @@ public abstract class ServerCommandLine extends Configured implements Tool {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Parse and run the given command line. This may exit the JVM if
|
* Parse and run the given command line. This will exit the JVM with
|
||||||
* a nonzero exit code is returned from <code>run()</code>.
|
* the exit code returned from <code>run()</code>.
|
||||||
|
* If return code is 0, wait for atmost 30 seconds for all non-daemon threads to quit,
|
||||||
|
* otherwise exit the jvm
|
||||||
*/
|
*/
|
||||||
public void doMain(String args[]) {
|
public void doMain(String args[]) {
|
||||||
try {
|
try {
|
||||||
|
@ -150,6 +153,20 @@ public abstract class ServerCommandLine extends Configured implements Tool {
|
||||||
if (ret != 0) {
|
if (ret != 0) {
|
||||||
System.exit(ret);
|
System.exit(ret);
|
||||||
}
|
}
|
||||||
|
// Return code is 0 here.
|
||||||
|
boolean forceStop = false;
|
||||||
|
long startTime = EnvironmentEdgeManager.currentTime();
|
||||||
|
while (isNonDaemonThreadRunning()) {
|
||||||
|
if (EnvironmentEdgeManager.currentTime() - startTime > 30 * 1000) {
|
||||||
|
forceStop = true;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
Thread.sleep(1000);
|
||||||
|
}
|
||||||
|
if (forceStop) {
|
||||||
|
LOG.error("Failed to stop all non-daemon threads, so terminating JVM");
|
||||||
|
System.exit(-1);
|
||||||
|
}
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
LOG.error("Failed to run", e);
|
LOG.error("Failed to run", e);
|
||||||
System.exit(-1);
|
System.exit(-1);
|
||||||
|
|
Loading…
Reference in New Issue