|
Doug Cutting (JIRA) |
at Apr 21, 2008 at 9:34 pm
|
⇧ |
| |
[
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-3250Project: 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.