Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

Edit:

Since this direct question to the Stackoverflow team did not invite any answers, I’ve modified it directed at the mediawiki database architecture.

Is it fine to copy the mediawiki database architecture to design your own wiki? Is there a better renormalized architecture out in the wild that I can take a look at? One that keeps the existing features intact but cuts down on the joins.

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

share|improve this question
prob belongs on meta, but could be relevant to SO – Jason Aug 28 '09 at 6:35
6  
I think it's okay on SO, it's talking about the technical design of this type of site – Andy White Aug 28 '09 at 6:39
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 '09 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 '09 at 14:32
1  
17 Up votes and just 1 answer. Wow! – AJ. Oct 10 '09 at 16:22
show 1 more comment

2 Answers

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.

share|improve this answer

I think before giving an answer yes or no, the developer should answer itself few other questions related to the future of the project (like 5 year from now):

  • maximum number of users
  • page loads/day
  • non-cachable page loads/day
  • traffic (gb/month,day) Answering these will tell you what kind of solutions could work for you or not.

Also regarding security/access controll - mediawiki was designed to be open (no real private sub-wikis or groups) - for this reason it may not be right for corporate wiki. I should mention that there are extensions that are trying to some problems like this but they do not integrate very well.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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