I've been wondering how facebook manages the database design for all the different things that you can "like". If there is only one thing to like, this is simple, just a foreign key to what you like and a foreign key to who you are.

But there must be hundreds of different tables that you can "like" on facebook. How do they store the likes?

link|improve this question

feedback

3 Answers

up vote 4 down vote accepted

If you want to represent this sort of structure in a relational database, then you need to use a heirarchy normally referred to as table inheritance. In table inheritance, you have a single table that defines a "parent" type, then "child" tables whose primary keys are also foreign keys back to the parent.

Using the Facebook example, you might have something like this:

User
------------
UserId (PK)

Item
-------------
ItemId (PK)
ItemType (discriminator column)
OwnerId (FK to User)

Status
------------
ItemId (PK, FK to Item)
StatusText 

RelationshipUpdate
------------------
ItemId (PK, FK to Item)
RelationshipStatus
RelationTo (FK to User)

Like
------------
OwnerId (FK to User)
ItemId (FK to Item)
Compound PK of OwnerId, ItemId

In the interest completeness, it's worth noting that Facebook doesn't use an RDBMS for this sort of thing. They have opted for a NoSQL solution for this sort of storage. However, this is one way of storing such loosely-coupled information within an RDBMS.

link|improve this answer
That could be a solution, I think the problem is that "everyhing" must be an "Item" because what happens if you have a table that is not an Item and someday you want a like for that too?. I think that sometimes the simpler is the better, why not make the opposite inheritance? like is the parent and you have a like_for_status table with a FK to status, and like_for_photo, etc. you can extend it easily to any table, and your queries are faster too. – Enrique Sep 20 '11 at 17:48
+1, although I think you mean Table Per Type or TPT. – Yuck Sep 20 '11 at 17:49
@Yuck: Yes, TPT (rather than Table-Per-Hierarchy), though TPT and TPH are, as far as I know, part of the Entity Framework lexicon rather than being more generically SQL. – Adam Robinson Sep 20 '11 at 17:54
@Enrique Yes, that's certainly a consideration. I am a little dubious on the "queries are faster too" claim, though. – Adam Robinson Sep 20 '11 at 17:55
@Adam Robinson, about performance, yes you are right, is not a big difference and not a reason for choosing one method or another. Even more, depending the case the query in your solution can be faster, because you don't need a JOIN if you know the ItemId. – Enrique Sep 20 '11 at 18:37
feedback

You can have a table with Id, ForeignId and Type. Type can be anything like Photo, Status, Event, etc… ForeignId would be the id of the record in the table Type. This makes possible for both comments and likes. You only need one table for all likes, one for all comments and the one I described.

Example:

Items
Id  | Foreign Id  | Type
----+-------------+--------
  1 |         322 | Photo
  4 |         346 | Status

Likes
Id  | User Id     | Item Id
----+-------------+--------
  1 |         111 | 1

Here, user with Id 111 likes the photo with Id 322.


Note: I assume you are using an RDBMS, but see Adron's answer. Facebook does not use an RDBMS for most of their data.

link|improve this answer
But then you can't use constraints in the "Foreign Id" – Enrique Sep 20 '11 at 16:38
@Enrique Can you elaborate? There are certainly restrictions as to what can and cannot be enforced in a table inheritance pattern using RI constraints only, but it's not clear what you're talking about. – Adam Robinson Sep 20 '11 at 16:39
@Adam Robinson The "Foreign_Id" column in the "Items" table is not a real FK, because you can't point it to any table, because it points to many tables at really (depending on the "Type" column), so you can't put a FK (and hence a constraint) there. That could make your data inconsistent. – Enrique Sep 20 '11 at 17:06
1  
@Enrique I see that now...I misread his answer, as it doesn't actually represent a table inheritance pattern. Table inheritance would mean that your Photo or Status table would have its primary key also be a foreign key back to Item. – Adam Robinson Sep 20 '11 at 17:26
feedback

Facebook does not have traditional foreign keys and such, as they don't use relational databases for most of their data storage. Simply, they don't cut it for that.

However they use several NoSQL type data stores. The "Like" is most likely attributed based on a service, probably setup in an SOA style manner throughout their infrastructure. This way the "Like" can basically be attributed to anything they want it to be associated with. All this, with vast scalability and no tightly coupled relational issues to deal with. Something that Facebook, can't really afford to deal with at the volume they operate.

They could also be using an AOP (Aspect Oriented Programming) style processing mechanism to "attach" a "Like" to anything that may need one at page rendering time, but I get the notion that it is asynchronous processing via JavaScript against an SOA style web service or other delivery mechanism.

Either way, I'd love to hear how they have this setup from an architecture perspective myself. Considering their volume, even the simple "Like" button becomes a significant implementation of technology.

link|improve this answer
-1. "They don't cut it for that" is a matter of opinion and much speculation. The only portion of this answer that actually addresses the question (how such things could be stored) is your second paragraph. – Adam Robinson Sep 20 '11 at 16:38
feedback

Your Answer

 
or
required, but never shown

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