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.

What is the database design Facebook uses for it's wall posts ?

At facebook we can place a status update that could be any of the following objects:

  • a message
  • a video
  • a url (renders preview of the url)
  • a photo
  • etc

Most of these objects share a lot of similarity.

If we want to create a similiar site like facebook, would it be smart to have 1 table with all the objects and a lot of NULL fields or would it be smarter to have a table for each object type.

How did facebook manage this in the early days?

share|improve this question
3  
What is the database design Facebook uses for it's wall posts ? ask Facebook employees – Martin. Dec 5 '11 at 11:45
Facebook's engineering team put loads of information on the t'interwebs about their design and engineering decisions. We are not your human google team! Please try doing some research before posting questions here, if you have some questions about their design we'd love to help. – James Butler Dec 5 '11 at 11:50
1  
We don't know and, more importantly, it doesn't matter. Just write a database structure that fits your case. Forget what everyone else is doing. I'd also consider asking yourself why you want to write yet-another-Facebook-clone-v0.1 when Facebook already exists, already does what you're trying to do, and has massive traction and commercial investment. – Polynomial Dec 5 '11 at 11:51

closed as not a real question by Polynomial, Neil Knight, Tudor, Dennis, Filburt Dec 5 '11 at 11:54

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

up vote 0 down vote accepted

I'd use this database structure

CREATE TABLE `posts` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `uid` int(11) NOT NULL,
  `title` varchar(150) NOT NULL,
  `body` varchar(1000) NOT NULL,
  `link` varchar(1000) NOT NULL,
  `img` varchar(1000) NOT NULL,
  `video` varchar(1000) NOT NULL
  `likes` int(5) NOT NULL,
  `comments` int(5) NOT NULL,
  `timestamp` int(11) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8
  • img is eventually filled with url to the attached image
  • video is eventually filled with url to the attached video
  • link is eventually filled with url to posted link
  • body can contain links, too

What is the database design Facebook uses for it's wall posts ?

Nobody but Facebook employees can answer this

share|improve this answer
I hoped someone had leaked out a db scheme at Facebook :) If i would put all objects in 1 table, what would be the maximum columns (performance wise) the table could have ? I have got a feeling that anything above 20 columns is bad ? – Mizja Dec 5 '11 at 11:58
2  
I'd -1 for the fact that you'd even entertain this misguided idea, but I've not yet had my coffee so I can't be entirely sure whether I'm just being an asshole or whether I'm actually right. – Polynomial Dec 5 '11 at 11:58
@Mizja what even makes you think they use a relational database...? – James Butler Dec 5 '11 at 12:00
@JamesButler - They use relational databases for most of their stuff, especially backend. They do use Redis / MongoDB for some of the private messaging and chat stuff though. Read through some of the old Facebook Engineering blog posts, there's gold in that there rainbow. – Polynomial Dec 5 '11 at 12:03
3  
@Martin - It's more about how you answer, really. Giving a superficial answer to a question like this is generally a bad idea when there are a whole host of underlying issues to consider before even looking into relational design. The point of SO is not to give people answers to their questions, it's to give people answers to their problems. If their question shows a clear underlying failure in architecture, process or understanding, it is important to address those issues first. – Polynomial Dec 5 '11 at 13:10
show 3 more comments

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