Google should have a bit more sophisticated filesystem that supports random access far more better than HDFS. They are using BigTable far more often and extensive, which requires a faster modification of blocks and concurrent read/writes of a block.
But actually you can implement something similar. I did recently with writing a webcrawler.
Bascially you can't parallize IO. So you have to use a queue and sequentially append to a sequencefile.
private final ConcurrentLinkedQueue<FetchResult> queue = new ConcurrentLinkedQueue<FetchResult>();
private final Configuration conf = new Configuration();
private SequenceFile.Writer writer = null;
public boolean running = true;
public FetchResultPersister() throws IOException {
FileSystem fs = FileSystem.get(conf);
Path out = new Path("files/crawl/result.seq");
fs.delete(out, true);
writer = new SequenceFile.Writer(fs, conf, out, Text.class, Text.class);
}
public final void add(final FetchResult result) {
queue.offer(result);
}
@Override
public final void run() {
long retrieved = 0L;
while (running) {
final FetchResult poll = queue.poll();
if (poll != null) {
try {
writer.append(new Text(poll.url), asText(poll.outlinks));
retrieved++;
if (retrieved % 100 == 0) {
System.out
.println("Retrieved " + retrieved + " sites!");
}
} catch (IOException e) {
e.printStackTrace();
}
} else {
try {
Thread.sleep(10000);
} catch (InterruptedException e) {
e.printStackTrace();
}
}
}
// close etc omitted
}
The main idea is that the disk IO is not blocking the computation.
Basically you are just using a ConcurrentLinkedQueue which is synchonized and you're appending results from various threads. As you can see, this is also running in a thread, polling for new results to write to the sequencefile.
I'm sure that GFS supports these things natively, HDFS does (at this point) not.