vote up 0 vote down star

I'm looking to scale an existing phpBB installation by separating the read queries from the write queries to two separate, replicated MySQL servers. Anyone succeeded in doing this, specifically with phpBB?

The biggest concern I have so far is that it seems like the queries are scattered haphazardly throughout the code. I'd love to hear if anyone else did this, and if so, how it went / what was the process.

flag
sorta curious why you are doing this? .. Have you done some kind of benchmark that suggests keeping doing this is a win over simply load balancing your traffic ? – Scott Evernden Mar 9 at 21:52
It's going to be done side-by-side with basic load balancing. We're expecting a ridiculous amount of traffic concentrated in a small timeframe from all over the world, and need to retrofit an existing system. – Steve Paulo Mar 10 at 0:29

2 Answers

vote up 1 vote down check

Just add more RAM. Enough RAM to hold the entire database. You'll be surprised how fast your inefficient script will fly. Memory forgives a lot of database scaling mistakes.

link|flag
vote up 1 vote down

You could try MySQL Proxy which would be an easy way to split the queries without changing the application.

link|flag
This is something I'm now looking into. Thanks. – Steve Paulo Mar 10 at 0:32

Your Answer

Get an OpenID
or

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