hi,
thanks for your reply.
the 3 servers running the application are CPU intensive. server 1 has the lowest CPU usage of the three. (based on idle time).
on replication. would i see much of an increased performance?
and how quick is the replication process? is it instantaneous or is it delayed by a few seconds/minutes?
any delay is critical!
thanks for your reply
Main Topics
Browse All Topics





by: adrpoPosted on 2008-03-11 at 22:45:54ID: 21103355
Hi,
Have you tried not using replication, but moving the DB
to another of those servers, not the apache one.
It might make it faster if you have a dedicated db server.
If you still want to use replication, read more
about load balancing and replication here:
http://dev.mysql.com/doc/r
You could replicate on each server (a slave on each one)
with the database 1 as master. You will only be able to
WRITE on MASTER so if you have a lot of selects on slave
that's ok, but updates always need to go via the MASTER.
If you have a lot of writes on the slaves then this setup
might not be good for you.
Cheers,
za-k/