Tagged Questions

3
votes
4answers
5k views

Amazon S3 architecture

While the post @ http://highscalability.com/amazon-architecture explains Amazon's architecture in general, I am interested in knowing how Amazon S3 is implemented. Some of my guesses are A ...
1
vote
2answers
142 views

How does HBase guarantee row level atomicity?

Considering the fact that HBase stores each column family in a separate HFile and the fact that a row can span many Column Families. How does HBase ensure that a put/delete operation on a row that ...
1
vote
2answers
590 views

How to get Filename/File Contents as key/value input for MAP when running a Hadoop MapReduce Job?

I am creating a program to analyze PDF, DOC and DOCX files. These files are stored in HDFS. When I start my MapReduce job, I want the map function to have the Filename as key and the Binary Contents ...
0
votes
2answers
312 views

Why doesn't Hadoop file system support random I/O?

The distributed file systems which like Google File System and Hadoop doesn't support random I/O. (It can't modify the file which were written before. Only writing and appending is possible.) Why ...