Package eu.stratosphere.client.program

Examples of eu.stratosphere.client.program.JobWithJars


    return new InetSocketAddress(host, port);
  }

  @Override
  public JobExecutionResult executePlan(Plan plan) throws Exception {
    JobWithJars p = new JobWithJars(plan, this.jarFiles);
    return this.client.run(p, -1, true);
  }
View Full Code Here


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

  @Override
  public String getOptimizerPlanAsJSON(Plan plan) throws Exception {
    OptimizedPlan op = client.getOptimizedPlan(new JobWithJars(plan, this.jarFiles), -1);
    PlanJSONDumpGenerator jsonGen = new PlanJSONDumpGenerator();
    return jsonGen.getOptimizerPlanAsJSON(op);
  }
View Full Code Here

TOP

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

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.