vote up 5 vote down star
3

Currently I have two linux servers wunning MySQL, one sitting on a rack right next to me under a 10Mbit upload pipe (main server) and another some couple of miles away on a 3Mbit upload pipe (mirror).

I want to be able to replicate data on both servers continuously, but have run into several roadblocks. One of them being, under MySQL master/slave configurations, every now and then, some statements drop (!), meaning; some people logging on to the mirror URL don't see data that I know is on the main server and vice versa. Lets say this happens on a meaningful block of data once every month, so I can live with it and assume its a "lost packet" issue (i.e., god knows, but we'll compensate).

The other most important (and annoying) recurring issue is that, when for some reason we do a major upload or update (or reboot) on one end and have to sever the link, then LOAD DATA FROM MASTER doesn't work and I have to manually dump on one end and upload on the other, quite a task nowadays moving some .5TB worth of data.

Is there software for this? I know MySQL (the "corporation") offers this as a VERY expensive service (full DB replication). Just wondering what people out there do. The way its structured, we run an automatic failover where if one server is not up, then the main URL just resolves to the other server.

Thx.

/mp

flag

3 Answers

vote up 1 vote down check

Maybe this could be inspiration: http://www.howtoforge.com/loadbalanced_mysql_cluster_debian

link|flag
vote up 0 vote down

GoldenGate is a very good solution, but probably as expensive as the MySQL replicator.

It basically tails the journal, and applies changes based on what's committed. They support bi-directional replication (a hard task), and replication between heterogenous systems.

Since they work by processing the journal file, they can do large-scale distributed replication without affecting performance on the source machine(s).

link|flag
vote up 0 vote down

Damn. Golden Gate seems expensive.

link|flag

Your Answer

Get an OpenID
or

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