[
https://issues.apache.org/jira/browse/CHUKWA-98?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12697147#action_12697147
]
Eric Yang commented on CHUKWA-98:
---------------------------------
Use SignalHandler would do the job, example:
public class **** implements sun.misc.SignalHandler {
private boolean Running = true;
private static Logger myLogger;
public SignalHandler() {
try
{
this.setupHandler();
}
catch (SignalHandlerException e)
{
myLogger.info ( e.toString() );
}
}
private void setupHandler() throws SignalHandlerException {
this.handleSignal("INT");
this.handleSignal("TERM");
//this.handleSignal("HUP");
}
> PidFile issue
> -------------
>
> Key: CHUKWA-98
> URL: https://issues.apache.org/jira/browse/CHUKWA-98
> Project: Hadoop Chukwa
> Issue Type: Bug
> Reporter: Jerome Boulon
> Priority: Blocker
>
> Some processes like Collectors, demuxManager, etc have to be able to exit if
> they have to.
> In that case, watchdog will not restart them since the shutdown hook will
> have done the cleanup.
> pFile = new PidFile("Agent");
> Runtime.getRuntime().addShutdownHook(pFile);
> pFile = new PidFile("Collector");
> Runtime.getRuntime().addShutdownHook(pFile);
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.