Tagged Questions

0
votes
2answers
31 views

How to validate selects / inserts are hitting the right server with MySQL Master/Slave

I've got a rails app using the master_slave_adapter plugin (http://github.com/mauricio/master_slave_adapter/tree/master) to send all selects to a slave, and all other statements to the master. …
4
votes
2answers
51 views

ActiveRecord counter_cache giving stale count with multi_db gem

I'm using the multi-db gem with Slony-I replication on PostgreSQL in a Rails app. This mostly works perfectly, but there is a bit of a replication lag in certain cases. One of the cases involves an …
1
vote
4answers
72 views

Ruby On Rails Master-Slave Postrgres Databases

I am currently setting up a master-slave app using Ruby on Rails that needs to have a Master-Slave backend. I'm currently looking at using Slony for the replication component, and Masochism for …
1
vote
2answers
156 views

How to write the Mysql binary log position of master when doing a mysqldump from slave?

I am currently running mysqldump on a Mysql slave to backup our database. This has worked fine for backing up our data itself, but what I would like to supplement it with is the binary log position …
0
votes
2answers
76 views

What’s the best way to create a master-slave configuration for a web app?

I'm creating a server management interface for a few of my servers (which host virtual servers) and I wanted to know the best way to implement a master-slave configuration for said interface. The …
0
votes
2answers
140 views

mysql slave database problem

Currently we have 3 slave databases, but almost always there is one of them extremly slow than others(can be an hour after master database) Has any one met similar problem?What may be the cause?
0
votes
3answers
188 views

using WCF as a master-slave command model.

I'm developing a master-slave command model by which some application "Master" sends commands to homogenous processes called "Slave" to do some task and then respond back with status complete or …