Package eu.stratosphere.api.java.operators.translation

Examples of eu.stratosphere.api.java.operators.translation.JavaPlan


   
    for (DataSink<?> sink : sinks) {
      planSinks.add(translate(sink));
    }
   
    JavaPlan p = new JavaPlan(planSinks);
    p.setJobName(jobName);
    return p;
  }
View Full Code Here


    if (jobName == null) {
      jobName = getDefaultName();
    }
   
    OperatorTranslation translator = new OperatorTranslation();
    JavaPlan plan = translator.translateToPlan(this.sinks, jobName);
   
    if (getDegreeOfParallelism() > 0) {
      plan.setDefaultParallelism(getDegreeOfParallelism());
    }
   
    try {
      registerCachedFilesWithPlan(plan);
    } catch (Exception e) {
View Full Code Here

TOP

Related Classes of eu.stratosphere.api.java.operators.translation.JavaPlan

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.