Hadoop支持文件追加"append"

首先需要配置hdfs-site.xml文件:
     
        dfs.support.append
        true

     

默认dfs.support.append参数是false的

 
然后在mapreduce程序中可以如下实现文件的追加
FileSystem fs = FileSystem.get(URI.create(dst), conf);
FSDataOutputStream out = fs.append(new Path(dst));
 

具体支持文件追加的Hadoop版本信息如下:

Hadoop支持文件追加

你可能感兴趣的:(Hadoop相关)