Examples of KittenClient


Examples of com.cloudera.kitten.client.KittenClient

    if (tmpFile.exists()) {
      tmpFile.delete();
    }
    //tmpFile.deleteOnExit();

    KittenClient client = new KittenClient(
        ImmutableMap.<String, Object>of(
            "TEST_FILE", tmpFile.getAbsolutePath(),
            "PWD", (new File(".")).getAbsolutePath()));
    conf.set(LocalDataHelper.APP_BASE_DIR, "file:///tmp/");
    client.setConf(conf);
    System.out.println("Running...");
    assertEquals(0, client.run(new String[]{config, "distshell"}));
    assertEquals(12, Files.readLines(tmpFile, Charsets.UTF_8).size());
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.