當前位置: 首頁>>代碼示例>>Java>>正文


Java LocalExecutor類代碼示例

本文整理匯總了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);
}
 
開發者ID:stratosphere,項目名稱:stratosphere-mongodb-example,代碼行數:9,代碼來源:Job.java

示例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);
}
 
開發者ID:rmetzger,項目名稱:stratosphere-sql,代碼行數:15,代碼來源:Launcher.java

示例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();
}
 
開發者ID:stratosphere,項目名稱:bigdataclass.org,代碼行數:8,代碼來源:Util.java


注:本文中的eu.stratosphere.client.LocalExecutor類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。