本文整理匯總了Java中eu.stratosphere.client.LocalExecutor類的典型用法代碼示例。如果您正苦於以下問題:Java LocalExecutor類的具體用法?Java LocalExecutor怎麽用?Java LocalExecutor使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
LocalExecutor類屬於eu.stratosphere.client包,在下文中一共展示了LocalExecutor類的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: main
import eu.stratosphere.client.LocalExecutor; //導入依賴的package包/類
public static void main(String[] args) throws Exception {
Job tut = new Job();
Plan toExecute = tut.getPlan(args);
JobExecutionResult result = LocalExecutor.execute(toExecute);
System.out.println("runtime: " + result.getNetRuntime());
System.exit(0);
}
示例2: main
import eu.stratosphere.client.LocalExecutor; //導入依賴的package包/類
public static void main(String[] args) throws Exception {
// TODO: OUTDATED
Launcher l = Launcher.getInstance();
Plan plan = l.convertSQLToPlan("SELECT depName, customerId, customerId, customerId "
+ "FROM customer WHERE ( customerId = 2 OR customerId = 3 OR customerId=3 ) AND (customerId < 15)");
LocalExecutor.execute(plan);
//Plan plan = convertSQLToPlan("SELECT COUNT(*) FROM tbl GROUP BY customerName");
//Plan plan = convertSQLToPlan("SELECT SUBSTRING(customerName, 1, 10), SUM(customerId) FROM tbl GROUP BY SUBSTRING(customerName, 1, 10)");
// LocalExecutor.execute(plan);
}
示例3: executePlan
import eu.stratosphere.client.LocalExecutor; //導入依賴的package包/類
public static void executePlan(Plan toExecute) throws Exception {
LocalExecutor executor = new LocalExecutor();
executor.start();
JobExecutionResult res = executor.executePlan(toExecute);
System.out.println("runtime: " + res.getNetRuntime());
executor.stop();
}