vote up -2 vote down star

Which do you think would be faster:

A) Reading a file 512 bytes in length on a solid state drive in a directory of 1 billion files

B) Selecting a 512-byte column by unique indexed key from a database table containing 1 billion records

EDIT:

Would the OS, database, or file system really make the difference? Is it that close of a race? Are SSD really that fast? Are databases really that slow?

flag
1  
What solid state storage device are you going to use that has a terabyte of storage? – Greg Hewgill Nov 7 at 6:40
Wouldn't it be half a terabyte? – JamesBrownIsDead Nov 7 at 6:41
Half a terabyte for the data, but you will need to consider filesystem cluster size and directory metadata overhead. That will certainly be nontrivial for such a large number of files. – Greg Hewgill Nov 7 at 6:44
not knowing filesystem, os, interface of the SSD and about a zillion parameters wouldn't give a meaning to that figure. plus what is your question, is the SSD is that fast ? – RageZ Nov 7 at 6:53
1  
Wait, is this the one about the dragon and the unicorn? – Ether Nov 7 at 7:27

3 Answers

vote up 4 vote down

The best way to answer this question is to perform a benchmark.

Also, there are many variables to consider. For example: What solid state hardware? What drive would the database be using? What filesystem is being used? What OS? What database?

link|flag
vote up 1 vote down

There are too many variables to give you a definitive answer but, all other things being equal, it is B, because the database is designed from the ground up to handle this kind of work.

link|flag
vote up 0 vote down

You question is: does solid state's directory content index is better / worse than an internal Database index ?

There is no way to calculate this staff, as there are so many more parameters to take into consideration.

in future MS Os there is an idea to make the file system based on a database (some future version of sql server) and then the question might have some more logic inside.

right now, I don't even think you can benchmark this question - as I don't think you can afford to get a 1000GB SSD, and even if you get one- it is so OS dependent that the results can't mean a lot anyway.

link|flag

Your Answer

Get an OpenID
or

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