Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

We're about to buy new hardware to run our analyses and are wondering if we're making the right decisions.

The setting:
We're a bioinformatics lab that will be handling DNA sequencing data. The biggest issue that our field has is the amount of data, rather than the compute. A single experiment will quickly go into the 10s-100s of Gb, and we would typically run different experiments at the same time. Obviously, mapreduce approaches are interesting (see also http://abhishek-tiwari.com/2010/08/mapreduce-and-hadoop-algorithms-in-bioinformatics-papers.html), but not all our software use that paradigm. Also, some software uses ascii files as in/output while other software works with binary files.

What we might be buying:
The machine that we might be buying would be a server with 32 cores and 192Gb of RAM, linked to NAS storage (>20Tb). This seems a very interesting setup for us for many of our (non-mapreduce) applications, but will such configuration prevent us from implementing hadoop/mapreduce/hdfs in a meaningful way?

Many thanks,
jan.

share|improve this question

1 Answer

You have an interesting configuration. What would be the Disk IO for the NAS storage used by you?

Make your decision based on the following: Map Reduce paradigm is used to solve the problem of handling large amount of data. Basically, RAM is more expensive than the Disk storage. You cannot hold all the data in the RAM. Disk storage allows you to store large amounts of data at cheaper costs. But, the speed at which you can read data from the disks is not very high. How does Map Reduce solve this problem? Map Reduce solves this problem by distributing the data over multiple machines. Now, the speed at which you can read data in parallel is greater than you could have done with a single storage disk. Suppose the Disk IO speed is 100 Mbps. With 100 machines you can read the data at 100*100 Mbps = 10Gbps.

Typically processor speed is not the bottleneck. Rather, the Disk IOs are the big bottlenecks while processing large amount of data.

I have a feeling that it may not be very efficient.

share|improve this answer
Just for reference: found this post on stackoverflow: bit.ly/gmjKLI – jandot Feb 19 '11 at 18:52
Jan, Thanks for sharing the information. It is definitely possible to run a Hadoop in a local mode. Although 0.21 release does allow one to utilize the multiple cores. But, you need to look at the main bottleneck which is the Disk I/Os. Consider this simple experiment: – chiku Feb 19 '11 at 20:08
A laptop with dual core and single hard disk. Two mappers are running simultaneously in parallel. Mappers need to read data from the disk. Hadoop achieves the effficiency in reads by having big block sizes of order of 64Mb which results in sequential reads and avoids random seeks totally. Now, two mappers are reading from the same hard disk. How will this happen? – chiku Feb 19 '11 at 20:08
Case1: Mapper1 will read the whole block of data into memory. Mapper2 is waiting for the Mapper1 to finish. Then, Mapper2 will start reading a block of data. So, you see even having two Mappers using the two cores does not solve the problem. Case2: Mapper1 reads some data. Then Mapper2 reads some data. Then Mapper1 again reads some data and so on. Problem Random seeks. The problem which Hadoop wants to avoid. – chiku Feb 19 '11 at 20:09
You can easily map this scenario to the hardware you are planning to buy to figure out whether its suitable for Map Reduce or not. – chiku Feb 19 '11 at 20:11

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.