Package com.asakusafw.runtime.directio

Examples of com.asakusafw.runtime.directio.Counter


    public void move_merge() throws Exception {
        touch("src/a.csv");
        touch("src/b.csv");
        touch("dst/c.csv");
        FileSystem fs = getTempFileSystem();
        HadoopDataSourceUtil.move(new Counter(), fs, getPath("src"), getPath("dst"));
        assertThat(collect(), is(path("dst/a.csv", "dst/b.csv", "dst/c.csv")));
    }
View Full Code Here

TOP

Related Classes of com.asakusafw.runtime.directio.Counter

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.