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

  1. organizing it first, and only then
  2. 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.

link|improve this question
1  
And how do they index Stackoverflow questions within minutes? – Thilo Nov 19 '10 at 8:57
16  
Where is my close reason "too much bold and capitalization"? – dmckee Nov 20 '10 at 20:19
3  
This isn't a programming question, but I happen to be doing some research on this for a class I'm taking, so I'll point you to some of the information that I found: Challenges in Building Large-Scale Information Retrieval Systems [PDF]. – Bill the Lizard Nov 22 '10 at 3:04
How can Google be so fast? would be borderline if it were asked today, but it's two years old so I'll leave it alone. The main reason that some questions get closed while others stay is that there are a million questions on SO, and we can't read all of them. We just do our best to keep questions on topic. I think this question could have just been closed as a duplicate of that one. (By the way, I don't know if you get a notification, but I returned your bounty before closing this.) – Bill the Lizard Nov 22 '10 at 12:19
I think you should post separate specific questions and provide the answers that you've found. The people who flagged this asked that it be closed as "Not a Real Question" because it was too long, unreadable, and slightly off topic. Make your questions short, specific, and to the point and they'll have a better chance of staying open. (Also, make sure they're about programming if you ask them here. Some of your questions about Google might be better asked at webmasters.stackexchange.com) – Bill the Lizard Nov 23 '10 at 12:10
feedback

closed as off topic by Bill the Lizard Nov 22 '10 at 3:02

Questions on Stack Overflow are expected to generally relate to programming or software development in some way, within the scope defined in the faq.

1 Answer

I'm pretty sure that the google's performance pretty much stems from two things:

a) Keeping the whole the index in memory

b) Building datacenters around the world to distribute those indexes as close to you as possible

Google isn't using a tradional architecture with ordinary servers and sql databases but a huge cluster of fairly low end computers and keeping everything in RAM

Read about their BigTable technology and the original paper on their index to glean some insights

http://en.wikipedia.org/wiki/BigTable http://infolab.stanford.edu/~backrub/google.html

EDIT

Some more info

http://features.techworld.com/storage/3183/no-standard-storage-arrays-for-google/

"The Google SSTable file format is used internally to store Bigtable data. An SSTable provides a persistent, ordered immutable map from keys to values, where both keys and values are arbitrary byte strings. Operations are provided to look up the value associated with a specified key, and to iterate over all key/value pairs in a specified key range. Internally, each SSTable contains a sequence of blocks (typically each block is 64KB in size, but this is configurable).

A block index (stored at the end of the SSTable) is used to locate blocks; the index is loaded into memory when the SSTable is opened. A lookup can be performed with a single disk seek: we first find the appropriate block by performing a binary search in the in-memory index, and then reading the appropriate block from disk. Optionally, an SSTable can be completely mapped into memory, which allows us to perform lookups and scans without touching disk."

link|improve this answer
1  
Think many many computers in a cluster each serving up the index (and content) from memory. I doubt they ever touch disk storage during a search – konrad Nov 19 '10 at 9:24
1  
I can't even imagine how much RAM that would take. – Andy Nov 19 '10 at 15:29
feedback

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