gpt4 book ai didi

hadoop - 如何使用Hadoop API copyMerge函数?什么是 addString 参数?

转载 作者:可可西里 更新时间:2023-11-01 14:50:45 27 4
gpt4 key购买 nike

有人知道或用过 Hadoop API 中的 copyMerge 函数 - FileUtil 吗?

copyMerge(FileSystem srcFS, Path srcDir, FileSystem dstFS, Path dstFile, boolean deleteSource, Configuration conf, String addString);

函数中,addString参数是什么?如何设置这些文件的合并方式?示例 我有部件号 1、2、3、4、5...,我想将它们按升序组合到一个文件中,我该怎么做?

有关 API 的详细信息:http://archive.cloudera.com/cdh/3/hadoop-0.20.2+320/api/org/apache/hadoop/fs/FileUtil.html

谢谢!

最佳答案

看起来 addString 刚刚写入 FileUtil 中的 OutputStream类

if (addString!=null)
out.write(addString.getBytes("UTF-8"));
}

当没有文档时,源代码是获取详细信息的真实和最佳来源。我写了几篇关于如何设置 Git 的文章 herehere . Git有助于更快、更轻松地访问代码。

关于hadoop - 如何使用Hadoop API copyMerge函数?什么是 addString 参数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7680304/

27 4 0
文章推荐: html - 中 SVG 的链接 "out"