Closed. This question needs to be more focused。它当前不接受答案。
想改善这个问题吗?更新问题,使其仅关注editing this post的一个问题。
6年前关闭。
Improve this question
我们是否可以使用MapReduce代码合并两个文件。
我知道
提前致谢。
srcPath-单个文件的目录。
想改善这个问题吗?更新问题,使其仅关注editing this post的一个问题。
6年前关闭。
Improve this question
我们是否可以使用MapReduce代码合并两个文件。
我知道
-getmerge and cat command
。提前致谢。
最佳答案
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-单个文件的目录。
关于join - 我们可以使用Hadoop MapReduce代码合并两个文件吗?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/21200595/
10-12 23:49