Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm a database newby. I am wondered about some things in Databases. For example, I saw the structure of how Facebook stores a friend relationship (see : https://developers.facebook.com/docs/reference/fql/friend). There only two columns, 1st users id and the second users id. Well that's okay.

As wikipedia says facebook has around 1 billion active users. So in that friend relationship table, there maybe about 100 billion rows. Searching through that table is super-fast (eg: seeing my list of friends). I wonder how they do it at that kind of speed.

Is it because that Facebook has some magic back-end ? Or is it the magic of Databases ? Can I do it also (have millions of users and search through the database within seconds) using PHP and MySQL ?

(I may be asking a silly question, but it always bothers me to know, please leave an answer)

share|improve this question
It would be nice if you add this also: how they synchronize between db servers? how they can backup Terabytes of data? and why their servers never crash? – Akam Feb 3 at 16:53

closed as not constructive by John Conde, j0k, tereško, d_r_w, Bohemian Feb 4 at 3:51

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

3 Answers

up vote 3 down vote accepted

The database makes use of indexes. This way it can find quickly data related to a given userID.

Depending on the index structure, space occupation etc... there is a gain, i.e. instead of searching N columns, it searches - for instance - log(N). A search by dichotomy of 100 billions rows

N = 100,000,000,000

would be

Search(N) : search log2(N) = search (36 rows)

Instead a searching 10^12 rows, only 36 rows have to be analyzed.

In the case you mention, friends, each user may have several friends, so

user1 => (userX, userY, userZ, ...)
userX => (userU, userV, user1, ...)

meaning user1 is friend with userX, userY etc... ie you don't have a unique index per user. But you have a unique index per couple of users.

on Mysql that would be

UNIQUE(user1,user2)

meaning the couple (user1,user2) is only once in the table. The syntax would be

CREATE UNIQUE INDEX friendsindex ON friends(user1,user2)

friendsindex being the index name, friends being the table. Or as you said, declaring the table primary key to be (user1,user2) (primary keys are unique per table).

--

The strategy to win a game that consists of finding the exact price of a given object is based on the same principle. Say the price is between 1 and 10000. You tell a price, and the handler says + or -. You have to find the price in as less tries as possible. E.g. the price is 6000.

You could start from 1 and give all prices until 6000 (ie 6000 tries), but you could also proceed by dichotomy

  • you: 5000
  • gamer: +
  • 7500 or (10000 - 5000)/2
  • -
  • 6250 or (7500 - 5000)/2
  • -
  • etc...

you divide the remaining range by 2 at each iteration. Instead of 6000 tries, you can find in 12 tries (log2(6000)).

--

About logarithms

For instance, how to find x in 2^x = 1024? Or x = log2(1024) meaning logarithm of 1024 in base 2 (answer: 10). In our story, a 1024 rows table having an index based on a binary tree would need 10 tries (max) to find the right element (instead of 1024 max).

share|improve this answer
sorry to say, but i don't get it really. what is log(N) ? – Pravinda Amarathunga Feb 3 at 17:10
so 1024 is the index of user1 and user2 ? – Pravinda Amarathunga Feb 3 at 17:53
If there were 1024 couples in the friends table, searching them from a binary index would only requires to perform 10 (max) comparisons (instead of 1024 max). – ring0 Feb 3 at 17:58
Now I get it. It's much more math, isn't it ? Great Answer !!! – Pravinda Amarathunga Feb 4 at 8:43

The performance likely comes from indexing, caching, and sharding.

share|improve this answer
even though if you do so, however, you have to search through the table ? it's amazing ! – Pravinda Amarathunga Feb 3 at 16:49

Facebook has a farm of servers. I think that they set up a cluster or something to have several identical copies of sql servers. In these sql databases they use indexes for faster search, but also they can use local cashes on user computers, which helps them to get faster results.

share|improve this answer

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