Re: Appending to HDFS file

2014-08-28 Thread Stanley Shi
You should not use this method: FSDataOutputStream fp = fs.create(pt, true) Here's the java doc for this create method: /** * Create an FSDataOutputStream at the indicated Path. * @param f the file to create * @*param** overwrite if a file with this name already exists, then if

RE: Appending to HDFS file

2014-08-28 Thread Liu, Yi A
Right, please use FileSystem#append From: Stanley Shi [mailto:s...@pivotal.io] Sent: Thursday, August 28, 2014 2:18 PM To: user@hadoop.apache.org Subject: Re: Appending to HDFS file You should not use this method: FSDataOutputStream fp = fs.create(pt, true) Here's the java doc for this create

RE: Appending to HDFS file

2014-08-28 Thread rab ra
Thank you all, It works now Regards rab On 28 Aug 2014 12:06, Liu, Yi A yi.a@intel.com wrote: Right, please use FileSystem#append *From:* Stanley Shi [mailto:s...@pivotal.io] *Sent:* Thursday, August 28, 2014 2:18 PM *To:* user@hadoop.apache.org *Subject:* Re: Appending to HDFS

Re: Appending to HDFS file

2014-08-27 Thread rab ra
hello Here is d code snippet, I use to append def outFile = ${outputFile}.txt Path pt = new Path(${hdfsName}/${dir}/${outFile}) def fs = org.apache.hadoop.fs.FileSystem.get(configuration); FSDataOutputStream fp = fs.create(pt, true) fp ${key} ${value}\n On 27 Aug 2014 09:46, Stanley Shi

Re: Appending to HDFS file

2014-08-26 Thread Stanley Shi
would you please past the code in the loop? On Sat, Aug 23, 2014 at 2:47 PM, rab ra rab...@gmail.com wrote: Hi By default, it is true in hadoop 2.4.1. Nevertheless, I have set it to true explicitly in hdfs-site.xml. Still, I am not able to achieve append. Regards On 23 Aug 2014 11:20,

Re: Appending to HDFS file

2014-08-23 Thread rab ra
Hi By default, it is true in hadoop 2.4.1. Nevertheless, I have set it to true explicitly in hdfs-site.xml. Still, I am not able to achieve append. Regards On 23 Aug 2014 11:20, Jagat Singh jagatsi...@gmail.com wrote: What is value of dfs.support.append in hdfs-site.cml

Appending to HDFS file

2014-08-22 Thread rab ra
Hello, I am currently using Hadoop 2.4.1.I am running a MR job using hadoop streaming utility. The executable needs to write large amount of information in a file. However, this write is not done in single attempt. The file needs to be appended with streams of information generated. In the

Re: Appending to HDFS file

2014-08-22 Thread Jagat Singh
What is value of dfs.support.append in hdfs-site.cml https://hadoop.apache.org/docs/r2.3.0/hadoop-project-dist/hadoop-hdfs/hdfs-default.xml On Sat, Aug 23, 2014 at 1:41 AM, rab ra rab...@gmail.com wrote: Hello, I am currently using Hadoop 2.4.1.I am running a MR job using hadoop