vote up 17 vote down star
10

In the highscalability blog, Todd Hoff talks about the wiki architecture SO adopted (initially), crunches that followed and mentions the painful refactoring needed to get back on track.

To quote:

Stack Overflow copied a key part of the Wikipedia database design. This turned out to be a mistake which will need massive and painful database refactoring to fix. The refactorings will be to avoid excessive joins in a lot of key queries. This is the key lesson from giant multi-terabyte table schemas (like Google’s BigTable) which are completely join-free. This is significant because Stack Overflow's database is almost completely in RAM and the joins still exact too high a cost.

Can someone explain the issues SO team faced (elaborating on the joins) and the fixes that followed?

In general, I am looking forward to learn about wiki architectures and how its maintained on a case to case basis.

P.S. Not sure if this belongs to Meta

flag

73% accept rate
prob belongs on meta, but could be relevant to SO – Jason Aug 28 at 6:35
2  
I think it's okay on SO, it's talking about the technical design of this type of site – Andy White Aug 28 at 6:39
Adding context; here is a picture of the wikipedia database schema: upload.wikimedia.org/wikipedia/commons/…? – jfar Aug 28 at 14:02
1  
This question asks about database and software design issues and just happens to reference SO. It could just as easily be a question about Wikipedia database design issues with no reference to SO--and be equally relevant here. (Oh, and +1.) – bill weaver Aug 28 at 14:19
2  
+1 for this question, I'd like to know what was really wrong. Joins aren't inherently bad, it's what relational databases were built to do. – Mark Aug 28 at 14:32
show 1 more comment

1 Answer

vote up 1 vote down

Once you start scaling there are several issues that you have and the amount of normalization is just a design decision.

Commercial database servers are helping users scale relational database. On the other hand, if you take a denormalized approach you will certainly have a degree of data duplication, so you move the design burden from constructing queries to locking writes and synchronizing data between different structures which increases the "cost" of writes exponentially with your scale.

At the end of the day, a hybrid approach works for most medium scale projects. I don't see a strong use case for expensive joins in a site like SO.

Also the "NoSQL" approach sounds a bit too radical IMHO. You can store hundreds of millions of rows of data in your denormalized MySQL table if you wish.

link|flag

Your Answer

Get an OpenID
or

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