我们可以使用Hadoop MapReduce Code合并两个文件

时间:2014-01-18 05:50:39

标签: join hadoop mapreduce

我们能否使用MapReduce代码合并两个文件。

我知道-getmerge and cat command

提前致谢。

1 个答案:

答案 0 :(得分:1)

try {
    FileSystem hdfs = FileSystem.get(conf);
    FileUtil.copyMerge(hdfs, new Path(srcPath), hdfs, new Path(
                            dstPath), false, conf, null);
} catch (IOException e) {
        e.printStackTrace();
}

srcPath - 个人文件的目录。