我们能否使用MapReduce代码合并两个文件。
我知道-getmerge and cat command
。
提前致谢。
答案 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 - 个人文件的目录。