Search in sources :

Example 1 with Application

use of org.apache.zeppelin.helium.Application in project zeppelin by apache.

the class RemoteInterpreterServer method loadApplication.

@Override
public RemoteApplicationResult loadApplication(String applicationInstanceId, String packageInfo, String noteId, String paragraphId) throws InterpreterRPCException, TException {
    if (runningApplications.containsKey(applicationInstanceId)) {
        LOGGER.warn("Application instance {} is already running", applicationInstanceId);
        return new RemoteApplicationResult(true, "");
    }
    HeliumPackage pkgInfo = HeliumPackage.fromJson(packageInfo);
    ApplicationContext context = getApplicationContext(pkgInfo, noteId, paragraphId, applicationInstanceId);
    try {
        Application app = null;
        LOGGER.info("Loading application {}({}), artifact={}, className={} into note={}, paragraph={}", pkgInfo.getName(), applicationInstanceId, pkgInfo.getArtifact(), pkgInfo.getClassName(), noteId, paragraphId);
        app = appLoader.load(pkgInfo, context);
        runningApplications.put(applicationInstanceId, new RunningApplication(pkgInfo, app, noteId, paragraphId));
        return new RemoteApplicationResult(true, "");
    } catch (Exception e) {
        LOGGER.error(e.getMessage(), e);
        return new RemoteApplicationResult(false, e.getMessage());
    }
}
Also used : ApplicationContext(org.apache.zeppelin.helium.ApplicationContext) HeliumPackage(org.apache.zeppelin.helium.HeliumPackage) RemoteApplicationResult(org.apache.zeppelin.interpreter.thrift.RemoteApplicationResult) Application(org.apache.zeppelin.helium.Application) TTransportException(org.apache.thrift.transport.TTransportException) InterpreterRPCException(org.apache.zeppelin.interpreter.thrift.InterpreterRPCException) InterpreterException(org.apache.zeppelin.interpreter.InterpreterException) ApplicationException(org.apache.zeppelin.helium.ApplicationException) TException(org.apache.thrift.TException) IOException(java.io.IOException)

Aggregations

IOException (java.io.IOException)1 TException (org.apache.thrift.TException)1 TTransportException (org.apache.thrift.transport.TTransportException)1 Application (org.apache.zeppelin.helium.Application)1 ApplicationContext (org.apache.zeppelin.helium.ApplicationContext)1 ApplicationException (org.apache.zeppelin.helium.ApplicationException)1 HeliumPackage (org.apache.zeppelin.helium.HeliumPackage)1 InterpreterException (org.apache.zeppelin.interpreter.InterpreterException)1 InterpreterRPCException (org.apache.zeppelin.interpreter.thrift.InterpreterRPCException)1 RemoteApplicationResult (org.apache.zeppelin.interpreter.thrift.RemoteApplicationResult)1