Tagged Questions

4
votes
2answers
322 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 ...
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 ...
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?
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 ...
0
votes
0answers
11 views

Master slave replication with replica latency in mind

I am working on a Ruby on rails application in production. This application needs master/slave database replication. I am using the octopus gem to do that. The problem is that I have a staging env ...
0
votes
0answers
109 views

How to integrate master slave database configuration in rails 2.3 using octopus

Could someone point me to the right direction? I have managed to setup master slave mysql databases in two separate servers with replication. All is fine but the question is, how do I divide the ...
0
votes
1answer
258 views

DelayedJob and `master_slave_adapter`; losing the master connection

We have a Rails application that is running in a MySQL master-slave set-up for a while now, using the master_slave_adapter plugin. Recently, there was a need for background processing of long running ...
0
votes
2answers
115 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. ...