Tagged Questions

4
votes
4answers
576 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 ...
3
votes
1answer
217 views

MySQL Replication (3 masters, 1 Slave)

I am currently in the process of setting up mySQL replication. I need to get data from three places. So for example I have NEED THIS DATA server1 - database1 server2 - database2 server3 - database3 ...
3
votes
3answers
312 views

How to check if two large tables are identical?

I have 2 servers running one as a master and another slave. I want to check weather both the tables have the same data. How can i check and confirm this? The table has more than 23 million rows. Also ...
3
votes
2answers
383 views

Using MYSQL replication to speed up Schema changes and table optermise

I hear that many people use master - slave arrangements help to improve time taken when changing schemas by using replication to setup a new temporary master, then stopping relocation and then ...
2
votes
2answers
92 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
1answer
461 views

mysql proxy r/w replication and temporary tables

I am doing master/slave replication on MySQL5.1 and r/w split with mysql proxy 0.8.x It works fine except with temporary tables. MySQL throws an error, that the temporary table is not existent. This ...
2
votes
1answer
237 views

Surgical slave reads for Ruby on Rails, mulitple databases

Greetings, I'm currently working on a multiple database rails application. I want to off load the SELECT queries on to the slave databases for only SOME of the databases or specific models. The ...
1
vote
1answer
47 views

MySQL Slave not Replicating

I have set up MySQL master/slave replication for 2 servers before without problems, I usually follow the great documentation on the MySQL website here. However this time I have set it up and ...
1
vote
1answer
362 views

Master and Slaves failover from Slave snapshot

I plan to use MySQL setup with one master server and several slave servers. I would perform regular consistent backup of the data EBS on one of the slave servers (I will always stop database before ...
1
vote
1answer
104 views

mysql replication incompatible statements problem

i wanted to setup a new mysql database slave running a newer version of mysql => 5.1.41 than the master => 5.0.75, which -- as far as i know -- should normally be no problem. however, as it turns out ...
1
vote
2answers
218 views

How to reset(?) a (out-of-sync)DB on a MySQL master-master replication

I have a master-master MySQL replication. It was delicious until yesterday but, for some reason which I could not figure it out yet, they lost synchronization. I've been wandering around forums and ...
0
votes
1answer
36 views

Can a database be replicated to an ec2 instance from outside amazon? [closed]

I am looking to set up replication which will have master in local environment and slave in the amazon environment. I am able to set up replication successfully for two ec2 instances but failing to do ...
0
votes
0answers
32 views

Master-slave replication; read-splitting strategy

We're close to requiring replication on our MySQL database, and I'm looking for a bit of clarification on the best strategy. Hopefully this is still specific enough a question to be asked here. We ...
0
votes
1answer
24 views

Snapshot of EBS volume used for replication

I setup an EC2 instance with MySQL on EBS volume and setup another instance which acts as Slave for Replication. The replication set up was fine. My question is about taking snapshots of these ...
0
votes
1answer
113 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
0answers
41 views

MAMP MySql Master Slave Replication on local machine

has anyone a good tutorial or info how to make a master slave replication on a local machine with MAMP 2.0 ? should i install multiple mysql instances or can i do it with one installation Thanks
0
votes
0answers
274 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
1answer
526 views

Configure pgpool in master_slave mode fails to auth against backend

I am trying to run pgpool on 2+ web servers which also have a rails app, etc. The idea is to have replication via slony or streaming and failover via pgpool. It would also be nice to have queries ...
0
votes
1answer
257 views

MySQL Replication and Master server crash recovery

Scenario: We have a mySQL master DB [30 GB] with 5 slaves[partial] that are being used for different purposes. Last day innodb crashed. Auto crash recovery did not work as on every write operation ...
0
votes
2answers
293 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 ...