Package org.apache.flink.client

Examples of org.apache.flink.client.RemoteExecutor


      // run KMeans
      cluster.setNumTaskManager(2);
      cluster.setTaskManagerNumSlots(2);
      cluster.start();

      RemoteExecutor ex = new RemoteExecutor("localhost", cluster.getJobManagerRpcPort());

      ex.executeJar(jarPath,
          "org.apache.flink.test.util.testjar.KMeansForTest",
          new String[] {
              points.toURI().toString(),
              clusters.toURI().toString(),
              outFile.toURI().toString(),
View Full Code Here

TOP

Related Classes of org.apache.flink.client.RemoteExecutor

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.