[
https://issues.apache.org/jira/browse/HADOOP-3250?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12591073#action_12591073
]
Doug Cutting commented on HADOOP-3250:
--------------------------------------
I like the name 'append' for this.
{noformat}
public FSDataOutputStream append(Path f) {
return append(f, getDefaultBufferSize(), null);
}
public FSDataOutputStream append(Path f, int bufferSize) {
return append(f, buffersize, null);
}
public abstract FSDataOutputStream append(Path f, int bufferSize, Progressible
progress);
{noformat}
> Extend FileSystem API to allow appending to files
> -------------------------------------------------
>
> Key: HADOOP-3250
> URL: https://issues.apache.org/jira/browse/HADOOP-3250
> Project: Hadoop Core
> Issue Type: New Feature
> Components: fs
> Reporter: dhruba borthakur
>
> Provide an API to allow applications to append data to pre-existing files.
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.