Tagged Questions

4
votes
2answers
320 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 ...
2
votes
2answers
89 views

mysql replication - master to slave

I have successfully set up a master to slave environment and it is definitely working fine. The only problem I have is that selecting count from a table, they are not the same BUT selecting after 5 ...
2
votes
2answers
1k views

Rails 3 and mysql master-slave replications

Want to set up mysql master-slave replications in rails app. Are there plugins/db adapters available for Rails 3? Does the Masochism plugin work properly with rails 3?
0
votes
1answer
110 views

MySQL Master-Master replication & Auto-Increment column issue

I am doing some testing with master-master replication and I ran on some weird problem, I will try and describe the procedure I followed so that someone can perhaps reproduce the issue. I set up ...
0
votes
3answers
208 views

How to code PHP MySQL class for master and slave setup?

I have never used a master/slave setup for my mysql databases so please forgive if I make no sense here. I am curious, let's say I want to have a master DB and 3 slave DB's. Would I need to write ...
0
votes
0answers
271 views

Show slave hosts only showing on MySQL Master

I'm having a problem with my master-slave MySQL setup. I have set the 'report-host' setting on my slaves and master servers however, when I run SHOW SLAVE HOSTS; It only displays results on the ...
0
votes
2answers
212 views

MySQL Replicate Different Databases from DIfferent Masters

I'm relatively new to MySQL replication. In a nutshell I have a MySQL 5.1 server instance on 3 Ubuntu Lucid Lynx servers. ATM I have Server A (MASTER) which replicates a single database to Server C ...
0
votes
1answer
466 views

MySQL Replication woes - slave not updating

mysql> show slave status\G; *************************** 1. row *************************** Slave_IO_State: Connecting to master Master_Host: 10.0.6.55 ...
0
votes
2answers
292 views

Scalability design question - master/slave databases

I just finished a database layer based on redis that offers to select between multiple databases, but I have no experience by myself on what should be common sense to do. Reliability is my biggest ...