Appending Data to a File
Function
Append data to a specified file in the Hadoop distributed file system (HDFS). The process of appending data to a file is
- Use the append method in the FileSystem instance to obtain the output stream of the appended data.
- Use the output stream to add the content to be appended behind the specified file in the HDFS.
Close all requested resources after appending data.
Example Codes
The following is code snippets. For complete codes, see HdfsExample class in com.huawei.bigdata.hdfs.examples.
/** * Append data to a file * * @throws java.io.IOException */ private void append() throws IOException { final String content = "I append this content."; FSDataOutputStream out = null; try { out = fSystem.append(new Path(DEST_PATH + File.separator + FILE_NAME)); out.write(content.getBytes()); out.hsync(); LOG.info("success to append."); } finally { // make sure the stream is closed finally. IOUtils.closeStream(out); } }
Feedback
Was this page helpful?
Provide feedbackThank you very much for your feedback. We will continue working to improve the documentation.See the reply and handling status in My Cloud VOC.
For any further questions, feel free to contact us through the chatbot.
Chatbot