… like to avoid! Is it necessary to make the master read-only? Can we use regular replication for some slaves… of SHOW SLAVE STATUS? Look at the last field, Auto_Position: # Slave #1 mysql> show slave status\G [...] Auto_Position: 1 -> GTID-based positioning # Slave #2 mysql> show slave status\G [...]…
Post: Choosing a MySQL HA Solution - Post-Webinar Q&A
…slave, as described in the MySQL manual. You can configure the slave…MySQL is up and running. That said, there are plenty of other MySQL and OS-level status…SHOW PROCESSLIST that might be a sign that trouble is brewing. Or if you watch your MySQL…t anything quite like that in the MySQL world, except …
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 slave; ERROR 1200… try to restart replication, it fails. However, I don’t like the error message, specifically the ‘fix in config file’ part… differently: mysql> stop slave; Query OK, 0 rows affected (0,01 sec) mysql > reset slave; Query OK, 0 rows affected (0,11 sec) mysql> show slave status\G…
Post: Galera Flow Control in Percona XtraDB Cluster for MySQL
…slave cluster might be: mysql> set global wsrep_provider_options=”gcs.fc_limit=500; gcs.fc_master_slave…make certification more expensive replication conflicts more likely and therefore time-consuming to the application…of 1.0) since the last SHOW GLOBAL STATUS that flow control is effect, regardless …
Post: How to create/restore a slave using GTID replication in MySQL 5.6
… which GTID is the master and set it on the slave. MySQL keeps two global variables with GTID numbers on it: gtid…> start slave io_thread; slave1> show slave status\G [...] Slave_IO_Running: Yes Slave_SQL_Running: Yes [...] Now, if you don’t get any error like primary… master; slave1> source test.sql; slave1> start slave; slave1> show slave status\G [...] Slave_IO_Running: Yes Slave_SQL_Running: Yes [...] Conclusion With the new GTID…
Post: Actively monitoring replication connectivity with MySQL's heartbeat
…SLAVE IO Thread will disconnect and try to connect again. Here is the SHOW SLAVE STATUS output after an error: mysql_slave > show slave status\G [...] Slave_IO_Running: Connecting Slave…
Post: Percona XtraDB Cluster reference architecture with HaProxy
…mysql-bin wsrep_cluster_address=gcomm:// wsrep_provider=/usr/lib/libgalera_smm.so datadir=/var/lib/mysql wsrep_slave… check if you have a 3 node cluster. mysql> show global status like ‘wsrep_cluster_size’; +——————–+——-+ | Variable_name | Value | +——————–+——-+ | …
Post: Replication checksums in MySQL 5.6
…show databases like ‘sakil%’; +——————-+ | Database (sakil%) | +——————-+ | sakilb | +——————-+ sakila on the master, sakilb on the slave: data integrity is broken, but SHOW SLAVE STATUS doesn’t show…
Post: Can MySQL temporary tables be made safe for statement-based replication?
…_pos=207; slave1 > show slave status\G *************************** 1. row *************************** Master_Log_File: mysql-bin.000007 …. omitted …….. Exec_Master_Log_Pos: 207 slave1 > show status like ‘%temp%’; +————————+——-+ | Variable_name | Value | +————————+——-+ | Slave_open_temp_tables | 1 | +————————+——-+ The slave is…

