I was reading paper published on Google File System and find out that GFS supports append and updates in arbitrary locations of an existing file.
As far as I know that HDFS wont support update operation because it is meant for write once and read many time functionality. HDFS do support append operation nowadays. They have dfs.support.append is set to false by default for recent releases.
So my question is there any way in which we can some kind of update operation. I had tried looking but all I had figure out isthat HDFS does not support update operation.
Hope to hear from you soon.
FYI: I had read many posts on claudera and other about this. I was able to find in some blogs by hadoop contributors that there are probability that HDFS does support update operation. But no one mentioned or made exact statement as how it do update operation.