use of com.datatorrent.stram.RecoverableRpcProxy in project apex-core by apache.
the class StreamingContainer method main.
/**
* Initialize container. Establishes heartbeat connection to the master
* distribute through the callback address provided on the command line. Deploys
* initial modules, then enters the heartbeat loop, which will only terminate
* once container receives shutdown request from the master. On shutdown,
* after exiting heartbeat loop, shutdown all modules and terminate
* processing threads.
*
* @param args
* @throws Throwable
*/
public static void main(String[] args) throws Throwable {
StdOutErrLog.tieSystemOutAndErrToLog();
logger.debug("PID: " + System.getenv().get("JVM_PID"));
logger.info("Child starting with classpath: {}", System.getProperty("java.class.path"));
String appPath = System.getProperty(PROP_APP_PATH);
if (appPath == null) {
logger.error("{} not set in container environment.", PROP_APP_PATH);
System.exit(1);
}
// interpreted as unrecoverable container failure
int exitStatus = 1;
RecoverableRpcProxy rpcProxy = null;
StreamingContainerUmbilicalProtocol umbilical = null;
final String childId = System.getProperty(StreamingApplication.DT_PREFIX + "cid");
try {
rpcProxy = new RecoverableRpcProxy(appPath, new Configuration());
umbilical = rpcProxy.getProxy();
StreamingContainerContext ctx = umbilical.getInitContext(childId);
StreamingContainer stramChild = new StreamingContainer(childId, umbilical);
logger.debug("Container Context = {}", ctx);
stramChild.setup(ctx);
try {
/* main thread enters heartbeat loop */
stramChild.heartbeatLoop();
exitStatus = 0;
} finally {
stramChild.teardown();
}
} catch (Error | Exception e) {
LogFileInformation logFileInfo = LoggerUtil.getLogFileInformation();
logger.error("Fatal {} in container!", (e instanceof Error) ? "Error" : "Exception", e);
/* Report back any failures, for diagnostic purposes */
try {
umbilical.reportError(childId, null, ExceptionUtils.getStackTrace(e), logFileInfo);
} catch (Exception ex) {
logger.debug("Fail to log", ex);
}
} finally {
if (rpcProxy != null) {
rpcProxy.close();
}
DefaultMetricsSystem.shutdown();
logger.info("Exit status for container: {}", exitStatus);
LogManager.shutdown();
if (exitStatus != 0) {
System.exit(exitStatus);
}
}
}
Aggregations