use of io.hetu.core.filesystem.HetuHdfsFileSystemClient in project hetu-core by openlookeng.
the class TestWindowOperator method getLocalHdfs.
private HetuHdfsFileSystemClient getLocalHdfs() throws IOException {
Properties properties = new Properties();
properties.setProperty("fs.client.type", "hdfs");
properties.setProperty("hdfs.config.resources", "");
properties.setProperty("hdfs.authentication.type", "NONE");
return new HetuHdfsFileSystemClient(new HdfsConfig(properties), Paths.get("/tmp/hetu/snapshot/"));
}
Aggregations