0
votes
0answers
8 views

reduce transfer time of primitive writer resource

I've written a script to perform a failover test on a mysql (percona) clsuter: #!/bin/bash WRITERHOST=$(crm status | grep writer_vip | awk '{print $4}') MYSQLCRED='-u repl_user -ppassword -h ...
0
votes
1answer
37 views

mysql cluster .net connector

I'm trying mysql cluster to use in a project for our customer. The configuration I setted up is the following: Hardware S.O. equipment Server1 - S.O. Windows 2008 R2 64bit Server2 - S.O. Windows ...
1
vote
0answers
77 views

How to handle MySQL slave failover in python?

Is there a generally accepted way to handle MySQL slave db failover in python code? Are there any good wrappers for SQLAlchemy connection pools (or other approaches) that are aware of replicas and ...
1
vote
1answer
147 views

MySQL replication: failover scenario

I have the following MySQL instances, along with a replication setup: S1 -----> (M1 <--> M2), where: M1 - M2 is a multi-master replication setup, S1 - a slave which replicates the writes which ...
0
votes
1answer
152 views

JDBC MySQL conect to fail over node very slow

My environment have 2 MySQL server (INS1 and INS2) and when I tested failover mode with down INS1 and driver creat connection to INS2 it has very very slow to connected (It has occur on Glassfish ...
1
vote
0answers
73 views

Message queue with remote backup and failover [closed]

I'm looking for a Message Queue solution that will allow me to backup the current state of the queue at a remote location for disaster recovery and allow the clients to fail-over to this backup queue ...
0
votes
1answer
164 views

Does Magento or Zend cache DB connection strings?

I have a Magento app running on a pretty standard Apache/Zend platform. I am pointing Magento to a new db by modifying the local.xml, however it does not seem to be honoring my changes, even after a ...
1
vote
1answer
290 views

spring + hibernate + data base connection pooling and high availabilty

I'm trying to configure my web application like this: 1 tomcat server 2 mysql data bases in master/ master replication for failover purpose. I also succeded to set up a pooled connexion using c3p0, ...
2
votes
1answer
227 views

Multi-Source Replication on MySQL

I'm looking to to keep data from several tables in sync with each other across several MySQL servers (more than two). The current used version of MySQL is 5.5 and the operating system being used is ...
3
votes
3answers
424 views

tomcat jdbc failover hosts

I'm currently using tomcat7 configured with it's own jdbc-pool as described here: http://www.tomcatexpert.com/blog/2010/04/01/configuring-jdbc-pool-high-concurrency . I also have a master/master ...
0
votes
2answers
222 views

Cross Data Center: MySQL Replication vs Simple File Copying?

Does it make sense to simply copy the mysql\data files vs mysql replication between data centers? I am having the impression mysql replication might be complex when done cross data center. And if I ...
0
votes
1answer
792 views

MySQL-proxy and basic failover (detect state)

I have just installed mysql proxy 0.8.2, and started playing with it. I am using it together with two MySQL 5.5 servers, listening on 3306, the proxy is running on 4040. Oh, and OS is Win 7 32-bit. ...
1
vote
0answers
150 views

Mysql Failover (Unable to write operations to new master)

I have a master-master mysql setup based on a master-slave relationship for replication purpose. I have managed to get the replication portion working and was investigating the failover portion ...
1
vote
1answer
392 views

Mysql connection pool with fail over

Question 1: I am using MySQL Connector /J to connect to MySQL. I am creating connection for every request. I need to use connection pool. Whether i need to choose c3p0 or i could use ...
1
vote
1answer
400 views

MySql replication failover on Amazon Cloud

I have configured a MySql Replication with 1 Master 1 Standy and 1 Slave. Master and Standby are put on different availability zones on US East region and the Slave is on the US West region. Both ...
1
vote
1answer
335 views

configuring MySql cluster failover using the .Net connector

I've got an ASP.Net website which is running on a load-balanced environment (2 Windows servers). It connects to a clustered MySql database which is running on two linux servers running Ubuntu. We've ...
2
votes
1answer
307 views

Mysql-Proxy Doesn't Failover (?)

This is the first time I am using mysql-proxy and I am experiencing the weird behavior I was wondering if the community has tackled it before. I have mysql-proxy (0.8.2) running on amazon linux (in ...
0
votes
2answers
757 views

JDBC statement fails to delete row in specific MySql table

I have a table, say example1 and I'm using a jdbc statement to delete one of its rows. I have tried various methods, from delete from example1 where id = 1 to statement.addbatch(sql) but it does not ...
2
votes
2answers
317 views

PHP Replicated Database Sessions Failover

I have 2 servers available for failover. The database is replicated (MySQL) as a Master-Master, such that, each server runs a copy of the full-stack. I see the session table get updated when I'm on ...
0
votes
1answer
276 views

I have one database (mysql). What is the best “failover” strategy?

Does MySQL come with a built-in automatic failover? Or, are there load-balancers out there that can "detect" whether the database is alive...and if not...shoot it to the failover database? I know ...
0
votes
2answers
2k views

mysql master/slave failover

Is there any product that make mysql master/slave failover process easier? something that can happen automatically, rather than manually fix it.
1
vote
2answers
4k views

MySQL failover using MySQL Proxy

I'm looking at implementing a failover mechanism for a MySQL database using MySQL Proxy (http://forge.mysql.com/wiki/MySQL_Proxy) My proposed setup is as follows: One active MySQL server and one ...
5
votes
4answers
2k views

Does PHP have a built in mechanism to failover from one database server to another?

I found this: http://www.evolt.org/failover-database-connection-with-php-mysql and similar examples. But is there a better way? I am thinking along the lines of the Automatic Failover Client in the ...