… slave; # For s1, s3 and s4 mysql> stop slave; mysql> change master to master_port=10002; mysql> start slave; Those of you who… try! # For s0,s1, s3, s4 mysql> stop slave; mysql> change master to master_port=10002; mysql> start slave; # And then check the… the last event executed: s1> show slave status\G [...] Executed_Gtid_Set: 219be3a9-c3ae-11e2-b985-0800272864ba:1, 3d3871d1-c3ae-11e2-b986…
Post: Replication in MySQL 5.6: GTIDs benefits and limitations - Part 1
… not on slave #2: # slave #1 mysql> change master to master_auto_position = 1; mysql> start slave; and let’s create a… different servers, but only if all servers have gtid_mode set to ON. Could it be interesting to run file-based… slave status\G [...] Auto_Position: 1 -> GTID-based positioning # Slave #2 mysql> show slave status\G [...] Auto_Position: 0 -> File-based positioning Conclusion…
Post: Percona Server 5.6.11-60.3 first Release Candidate now available
… id=”attachment_13396″ align=”alignright” width=”247″] Percona Server for MySQL version 5.6.11-60.3[/caption] Percona is glad… available here and from the Percona Software Repositories). Based on MySQL 5.6.11, including all the bug fixes in it…_PAGES query started returning data to indicate an incomplete result set. Bug fixed #1185040. The INNODB_CHANGED_PAGES table couldn’t…
Post: How people are using MySQL... from 1 user to 100 million (upcoming conference talk)
MySQL can be deployed in several ways, and that means you … caveats, but you can also gain a lot from write set replication. If the application gets really popular, sooner or later…
Post: Multicast replication in Percona XtraDB Cluster (PXC) and Galera
…mysql]# service mysql stop [root@node1 mysql]# service mysql stop [root@node1 mysql]# service mysql start –wsrep_cluster_address=gcomm:// [root@node2 mysql]# service mysql start [root@node3 mysql…regular IP of the node. Typically I just set the wsrep_node_address setting on each node if this IP is …
Comment: ZFS on Linux and MySQL
… 4GB? Also wondering if any one is using ZFS and MySQL to thin clone databases meaning using a snapshot of a… set of datafiles that support multiple copies of the source database. Would be interested if someone wanted to contribute on the MySQL… is not seen for example aggregating Oracle, SQL Server and MySQL into one source that the user or application sees. On…
Comment: Replication in MySQL 5.6: GTIDs benefits and limitations - Part 2
… (and in my opinion bad) part of the design of MySQL 5.6 global transaction ID. In general, there is no… in general “last executed GTID” makes little sense, rather the set of all executed events is needed. And using mysqlbinlog to… point does not work, you need to apply just the set of events missing. Well, if the user is not using…
Post: Repair MySQL 5.6 GTID replication by injecting empty transactions
… how to repair MySQL 5.6 GTID replication using two different methods. I didn’t mention the famous SET GLOBAL SQL_SLAVE_SKIP_COUNTER = n for a simple reason, it doesn’t work anymore if you are using MySQL… is found in Percona Toolkit for MySQL. Last week I gave a talk at Percona MySQL University @Toronto about GTID. It includes…
Post: Disconnecting a replication slave is easier with MySQL 5.5+ (RESET SLAVE vs. RESET SLAVE ALL)
….02 sec) mysql> reset slave; Query OK, 0 rows affected (0.04 sec) mysql> show slave status\G Empty set (0.00 sec) mysql> start… what you want. So never set master-xxx variables in my.cnf! From MySQL 5.5 Starting with MySQL 5.5, the situation…,00 sec) mysql> reset slave all; Query OK, 0 rows affected (0,04 sec) mysql> show slave status\G Empty set (0,00 sec…
Post: Galera Flow Control in Percona XtraDB Cluster for MySQL
… a six-hour tutorial about Percona XtraDB Cluster (PXC) for MySQL. I actually had more material than I covered (by design… replication feedback mechanism, unlike anything you find in standard async MySQL replication. It is my belief that the lack of understanding… tuning flow control in a master/slave cluster might be: mysql> set global wsrep_provider_options=”gcs.fc_limit=500; gcs.fc…

