…-brain immunity. Nobody likes to debug async replication while its broken or do the master-master/master-slave switchover when master is dying/dead. Yes, there are wrappers/scripts around this to make life easier…
Post: Percona XtraDB Cluster (PXC) in the real world: Share your use cases!
Post: Replication in MySQL 5.6: GTIDs benefits and limitations - Part 2
…; # For s0 s0> change master to master_host=’127.0.0.1′,master_user=’rsandbox’,master_password=’rsandbox’,master_port=10001,master_auto_position=1; s0> start slave; # For s1, s3 and s4 mysql> stop slave; mysql> change master to master…
Post: Replication in MySQL 5.6: GTIDs benefits and limitations - Part 1
… in sync with the master Change configuration for all servers and restart them Use CHANGE MASTER TO to instruct all servers to use GTIDs Disable read-only mode This procedure will switch all your servers from regular replication to… #1 mysql> change master to master_auto_position = 1; mysql> start slave; and let’s create a new table on the master: mysql> create…
Post: Choosing a MySQL HA Solution - Post-Webinar Q&A
… possible to replicate only some tables from master to slave, and if so, how? A: Yes. There are a few of ways to do it. One way is to set… on the master, but the slave determines what to do with it. The other approach is to filter what gets written to the binary…
Comment: Replication in MySQL 5.6: GTIDs benefits and limitations - Part 2
On Scenario #1, replace “change master to master_port=10001;” with “change master to master_port=10002;”
Post: Multicast replication in Percona XtraDB Cluster (PXC) and Galera
… standard mysql replication. 1 master with 5 async slaves is going to send a separate replication stream to each, so your bandwidth requirements will be similar. However, with async replication you have the luxury of not blocking the master…/s So, we can see our outbound bandwidth on our master node doesn’t change as we add more nodes when…
Post: How to fix your PRM cluster when upgrading to RHEL/CentOS 6.4
…writer_vip (ocf::heartbeat:IPaddr2): Started percona1 Master/Slave Set: ms_MySQL [p_mysql] Masters: [ percona2 ] Slaves: [ percona3 percona1 ] [root@percona1 ~]# ….conf –addmethod pcmk-redirect percona3 Method pcmk-redirect added to percona3. [root@percona1 ~]# ccs -f /etc/cluster/cluster.conf –…
Comment: Replication in MySQL 5.6: GTIDs benefits and limitations - Part 1
It may not be easy to simply switch from regular MySQL replication to using replication using GTIDs 1. Temporary tables – CREATE and…. Updates involving non-transactional storage engines – It is not possible to mix non-transactional tables (such as MYISAM) with innodb tables… on master databases. Also, if BINLOG_FORMAT is not consistent on master/slave db. 3. CREATE TABLE …. SELECT – It is not supported to…
Comment: Replication in MySQL 5.6: GTIDs benefits and limitations - Part 1
These limitations are part of the reason we decided not to merge MySQL 5.6 global transaction ID into MariaDB. In… much easier to switch a slave to GTID. Simply STOP SLAVE on the slave server, CHANGE MASTER to make it use GTID to connect, START SLAVE. There is no need for any special configuration or to restart or…
Comment: Replication in MySQL 5.6: GTIDs benefits and limitations - Part 2
Stephane, how are you coping with bug#69095 (replication fails with GTID enabled and master changes from SBR to RBR) and bug#69135 (mysql.slave_master_info is not updated) ?

