Package eu.stratosphere.client.program

Examples of eu.stratosphere.client.program.PackagedProgram


    return this.client.run(p, -1, true);
  }

  public JobExecutionResult executeJar(String jarPath, String assemblerClass, String[] args) throws Exception {
    File jarFile = new File(jarPath);
    PackagedProgram program = new PackagedProgram(jarFile, assemblerClass, args);
    return this.client.run(program.getPlanWithJars(), -1, true);
  }
View Full Code Here

TOP

Related Classes of eu.stratosphere.client.program.PackagedProgram

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.