Before I state the question, I have seen this thread and this one too. I know that the distributed lightweight architecture of Google's data store — information which is widely available on the Internet — is important to Google's speed.
I have scanned the Internet for a few weeks searching for authoritative confirmation or denial of this inconclusive assumption of mine: a big factor in why Google is so fast is that all related data in Google's file system (the GFS) and memory (like RAM) is physically stored sequentially on memory and disks.
Is this true or not? I'm just interested in the correctness of the above sentence, not how fragmentation to keep it sequential is done... if it's true, of course.
I know it sounds like a very simple observation, but: it seems that all clues on why Google is so fast revolve around the architecture. Some sources hint/imply that related data+sequential storage=speed, but don't clearly confirm or deny it.
If true, this has got to be a very important factor for Google's speed, which eluded me until now. It may suggest that Google pre-arranges/organizes data before storing it. In other words, Google doesn't just store data like most databases do, it takes things one step farther by
- organizing it first, and only then
- storing it, by placing related data in close physical proximity to each other on disk or in memory
Related chunks of data may not always be right next to each other, but they are always near each other.
Location of the data (on memory or disk) may be the crucial detail in this case.
The important point is: the data, and indexes to it, are almost always nearly optimally organized. They are grouped both logically and physically to create low I/O times, which result in much faster running times than a regular database — which only stores data, without optimizing it — could offer.
Is this true or false?
If you've worked with a database, you may know that that physical indexes are the fastest type of index. In physical indexing, records that are related or similar by key are physically mapped sequentially on disk. This reduces I/O for similar searches by reducing rotational latency or CAS latency (another CAS latency source).
This has got to be a big factor for Google's extra-high-speed performance, considering the gazillion megabytes of queryable data Google must keep — and retrieve! — and make available for access by thousands of users simultaneously.
The design decision/pattern of organizing data before storing them may help other developers/companies which are involved in the database-related development field to speed up most existing data-driven applications if clearly understood. If you don't first organize the data, it's like throwing your pants on the floor when you come home from work. Now you have to bend over and pick them up when you need them in the morning; what a slow and painful process! If true, of course.
The problem is that I'm not sure if it's true. I am sure that the right clustered index for a MSSQL server can be the difference between a JOIN operation taking 10 seconds or 0.100 milliseconds on two tables that each contain one million records. That's how this theory came to me. Unfortunately, details about Google's platform are never clearly stated anywhere. It's almost as if it's a secret, and we have to read between the lines.
So, to restate the question, and connect two pieces of info together:
Are all related data — say, all data about apples — physically and sequentially stored/mapped in the memory (be it disk or RAM)?
For example:
Apples|Macintosh|Cortland|[some more apple types] ^^^ physical bytes of ordered data
What do you know about whether this is true?
EDIT:
I'm not only interested in whether the indexes are sequential in memory. I would also like to know whether the data are also sequential in memory.
Is my observation true? If so, did you know about it before? I couldn't be certain from the available info I'd seen, even though it may have been implied. Is it already stated somewhere? If so, where?
Or is it false? Any help would be appreciated, as it's driving me crazy not knowing for sure.
PS: Any Google devs reading this? Would you mind sharing a word or two, maybe? Just general terms nothing proprietary.