SlideShare a Scribd company logo
Replication Tips & Tricks                                                                                                       + some things about GTIDs
Mats Kindahl
mats.kindahl@oracle.com




 1Copyright © 2012, Oracle and/or its affiliates. All rights reserved.   Insert Information Protection Policy Classification from Slide 12
Program Agenda


     Replication setup and status checking
     Slave fail-over using GTID
     Binary log analysis
     Crash-safe slaves
     Multi-source replication



2   Copyright © 2012, Oracle and/or its affiliates. All rights reserved.
About the Presentation



            This presentation will introduce you to some replication
            features and also briefly show tips and tricks on how to
            work with replication. The focus is on short ideas and
            each item does not go deeper into details.




3   Copyright © 2012, Oracle and/or its affiliates. All rights reserved.
What is Replication?


       ●      MySQL Master Server
                 –      Changes data
                 –      Sends changes to slave
       ●      MySQL Slave Server
                 –      Receives changes from master
                 –      Applies received changes to
                        database



4   Copyright © 2012, Oracle and/or its affiliates. All rights reserved.
Replication Topologies



    Dual Master
                                                                           Circular

                                                                                      Tree
Simple




5   Copyright © 2012, Oracle and/or its affiliates. All rights reserved.
Why Replication?
      Scaling out

                                                                           Writes




                                                                           Reads




6   Copyright © 2012, Oracle and/or its affiliates. All rights reserved.
Why Replication?
      Redundancy



                                                                             Slave
                          Crash                                            Promotion




                                                                                       New Master




7   Copyright © 2012, Oracle and/or its affiliates. All rights reserved.
Replication Architecture
                                                                     Master   Slave




8   Copyright © 2012, Oracle and/or its affiliates. All rights reserved.
Reading Slave Status
      Understanding the fields of SHOW SLAVE STATUS



       ●      I/O Thread Status                                            ●   SQL Thread Status
                 –      Slave_IO_Running                                       –   Slave_SQL_Running
                 –      Last_IO_Errno                                          –   Last_SQL_Errno
                 –      Last_IO_Error                                          –   Last_SQL_Error
                 –      Last_IO_Error_Timestamp                                –   Last_SQL_Error_Timestamp
       ●      Master being replicated from
                 –      Master_Host
                 –      Master_Port

9   Copyright © 2012, Oracle and/or its affiliates. All rights reserved.
Reading Slave Status
       Understanding the fields of SHOW SLAVE STATUS



        ●      Next event to execute – in master log coordinates
                  –      Relay_Master_Log_File + Exec_Master_Log_Pos
        ●      Next event to execute – in relay log coordinates
                         Relay_Log_File + Relay_Log_Pos
        ●      Next event to read from master
                         Master_Log_File + Read_Master_Log_Pos




10   Copyright © 2012, Oracle and/or its affiliates. All rights reserved.
Reading the Binary Log
         Decoding the binary log



          ●      Use mysqlbinlog
                           --hexdump                                  Show hex dump of event as comment
                           --start-position Start dumping at a position
                           --stop-position Stop dumping after this position

     # at 275                                                                              175 =373
                                                                                              16   10
     #120927 23:11:58 server id 3                                         end_log_pos 373
     # Position Timestamp    Type                                          Master ID        Size        Master Pos    Flags
     #      113 1e c1 64 50   02                                          03 00 00 00   62 00 00 00     75 01 00 00   00 00

                                                                                      Little-endian
                                                                              Query
11     Copyright © 2012, Oracle and/or its affiliates. All rights reserved.
Reading the Binary Log
         Decoding the binary log




     # at 275
     #120927 23:11:58 server id 3 end_log_pos 373
     # Position Timestamp    Type    Master ID        Size      Master Pos     Flags
     #      113 1e c1 64 50   02    03 00 00 00   62 00 00 00   75 01 00 00    00 00
     #      126 c5 03 00 00 00 00 00 00 04 00 00 1a 00 00 00 00 |................|
     #      136 00 00 01 00 00 00 00 00 00 00 00 06 03 73 74 64 |.............std|
     #      146 04 21 00 21 00 08 00 74 65 73 74 00 69 6e 73 65 |.......test.inse|
     #      156 72 74 20 69 6e 74 6f 20 74 32 20 76 61 6c 75 65 |rt.into.t2.value|
     #      166 73 20 28 31 2c 27 74 65 73 74 69 6e 67 27 29       |s..1..testing..|
     #        Query  thread_id=965    exec_time=0     error_code=0
     SET TIMESTAMP=1348780318/*!*/;
     insert into t2 values (1,'testing')
     /*!*/;

12     Copyright © 2012, Oracle and/or its affiliates. All rights reserved.
Reading the Binary Log
          Decode row events



           ●      Use mysqlbinlog
                            --verbose                                  Decode row events into pseudo-SQL
     # at 849
     # at 893
     #120928 15:19:24 server id 3                                end_log_pos 893   Table_map: `test`.`t2` mapped to number 48
     #120928 15:19:24 server id 3                                end_log_pos 941   Write_rows: table id 48 flags: STMT_END_F

     BINLOG '
     3KNlUBMDAAAALAAAAH0DAAAAADAAAAAAAAEABHRlc3QAAnQyAAIDDwIoAAM=
     3KNlUBcDAAAAMAAAAK0DAAAAADAAAAAAAAEAAv/8AwAAAA1yb3dzIGFyZSBjb29s
     '/*!*/;




13      Copyright © 2012, Oracle and/or its affiliates. All rights reserved.
Reading the Binary Log
          Decode row events



           ●      Use mysqlbinlog
                            --verbose                                  Decode row events into pseudo-SQL
     # at 849
     # at 893
     #120928 15:19:24 server id 3                                end_log_pos 893   Table_map: `test`.`t2` mapped to number 48
     #120928 15:19:24 server id 3                                end_log_pos 941   Write_rows: table id 48 flags: STMT_END_F

     BINLOG '
     3KNlUBMDAAAALAAAAH0DAAAAADAAAAAAAAEABHRlc3QAAnQyAAIDDwIoAAM=
     3KNlUBcDAAAAMAAAAK0DAAAAADAAAAAAAAEAAv/8AwAAAA1yb3dzIGFyZSBjb29s
     '/*!*/;
     ### INSERT INTO test.t2
     ### SET
     ###   @1=3
     ###   @2='rows are cool'

14      Copyright © 2012, Oracle and/or its affiliates. All rights reserved.
Global Transaction Identifiers (GTIDs)
        Handling positions in MySQL 5.5



        ●      Binary log positions manually handled
        ●      Each server has it's own position
        ●      Failing over slaves to new masters difficult
                  –      What is the position to fail over to?

       CHANGE MASTER TO
          MASTER_HOST='master1.example.com', MASTER_PORT=3306,
          MASTER_USER='repl_user', MASTER_PASSWORD='xyzzy',
          MASTER_LOG_FILE='master-bin.00001', MASTER_LOG_POS=22145;
                                                                             Different for
                                                                            different servers
15   Copyright © 2012, Oracle and/or its affiliates. All rights reserved.
Global Transaction Identifiers (GTIDs)
       Enabling Global Transaction IDs



       ●     MySQL 5.6 has Global Transaction ID
               –      Positions independent of server
       ●     GTID handshake
               –      Done on connection with master
               –      Negotiate position automatically



        CHANGE MASTER TO
           MASTER_HOST='master1.example.com', MASTER_PORT=3306,
           MASTER_USER='repl_user', MASTER_PASSWORD='xyzzy',
           MASTER_LOG_FILE='master-bin.00001', MASTER_LOG_POS=22145;
           MASTER_AUTO_POSITION=1;

16   Copyright © 2012, Oracle and/or its affiliates. All rights reserved.
Global Transaction Identifiers (GTIDs)
       Enabling Global Transaction IDs



        ●      Turn on GTIDs                                                [mysqld]
                                                                            …
        ●      Turn off dangerous statements                                gtid-mode=on
                 –      CREATE TABLE...SELECT                               enforce­gtid­consistency=on
                                                                            log-bin=master-bin
                 –      CREATE TEMPORARY TABLE                              log-slave-updates
                            ●     Inside transactions

        CHANGE MASTER TO
           MASTER_HOST='master1.example.com', MASTER_PORT=3306,
           MASTER_USER='repl_user', MASTER_PASSWORD='xyzzy',
           MASTER_LOG_FILE='master-bin.00001', MASTER_LOG_POS=22145;
           MASTER_AUTO_POSITION=1;

17   Copyright © 2012, Oracle and/or its affiliates. All rights reserved.
Global Transaction Identifiers (GTIDs)
       Global Transaction ID Concepts



        ●      Global transaction ID
                  –      A server UUID + Transaction Number
                             a61678ba­4889­4279­9e58­45ba840af334:1
                  –      Preserved when replicated
        ●      Global Transaction ID Set
                  –      Sequence of Server UUID + Transaction Number Range
                            a61678ba­4889­4279­9e58­45ba840af334:1­5,
                            f88e2a43­a13e­11e2­98de­0021cc6850ca:12­2564


18   Copyright © 2012, Oracle and/or its affiliates. All rights reserved.
Global Transaction Identifiers (GTIDs)
       Server Variables



        ●      @@GTID_EXECUTED
                  –      GTID set of all transactions logged in the binary log
        ●      @@GTID_PURGED
                  –      GTID set of all transaction purged from binary log
                  –      Cannot be sent to slaves




19   Copyright © 2012, Oracle and/or its affiliates. All rights reserved.
Cloning a Slave
                                                                                   Be
                                                                               My    fo
       Creating a slave image                                                     SQ   re
                                                                                    L
                                                                                      5.
        1. Stop the slave                                                               6
        2. Write down where slave has stopped
                  –      SHOW SLAVE STATUS
                  –      Relay_Master_Log_File + Exec_Master_Log_Pos
        3. Backup slave
                  –      mysqldump – slow but safe
                                   ­­dump­slave Generate CHANGE MASTER
                  –      Physical file copy – fast but you need to shut down the server

20   Copyright © 2012, Oracle and/or its affiliates. All rights reserved.
Cloning a Slave
                                                                                Be
                                                                            My     fo
       Setting up the new slave                                                SQ    re
                                                                                  L
                                                                                    5.
        4. Restore backup on new slave                                                6
        5. Direct the slave to the master
                  –      CHANGE MASTER
                  –      Master_Host + Master_Port
                  –      Relay_Master_Log_File + Exec_Master_Log_Pos
        6. Start slave
                  –      START SLAVE



21   Copyright © 2012, Oracle and/or its affiliates. All rights reserved.
Cloning a Slave
                                                                                               My
                                                                                                 SQ
                                                                                              or     L
                                                                                                       5
        1. Stop the slave                                                                         lat .6
                                                                                                     er
        2. Backup slave
                         mysqldump ­­host=slave1.example.com ­­user=root 
                            ­­dump­slave ­­set­gtid­purged >image.sql
        3. Start the slave
                                                                            Tell slave that transactions
        4. Restore image on new slave
                                                                            in image cannot be replicated
                         mysql ­­host=slave2.example.com ­­user=root <image.sql
        5. Start Slave



22   Copyright © 2012, Oracle and/or its affiliates. All rights reserved.
Point in time recovery


        ●      Use mysqlbinlog
                         --to-datetime                              Stop reading when reaching date
        ●      Example
                         mysqlbinlog --read-from-remote-server   
                                                                                    e
                             --host=master -uroot --position=192                ar      !
                             --to-datetime=”2009-04-11 12:36:56”             ps      ing
                                                                            am reas
                                                                         st
                             master-bin.00002[2-4] |                   e      nc
                         mysql -uroot --host=slave                  tim lly i
                                                                  :      a
                                                                                                 ing   ic
                                                                                              r n ot on
                                                                                           W a on
                                                                                                m
                                                                                          not

23   Copyright © 2012, Oracle and/or its affiliates. All rights reserved.
Using Relay Servers


        ●      Relieve master server by
               creating relay slaves
        ●      Just keep binary logs
        ●      Do not store data in tables
                  –      Use BLACKHOLE engine
                  –      --log-slave-updates

                SET STORAGE_ENGINE = BLACKHOLE
                ALTER TABLE table ENGINE = BLACKHOLE


24   Copyright © 2012, Oracle and/or its affiliates. All rights reserved.
Using Relay Servers

                                                       replicate-wild-do-table=*.%_east   replicate-wild-do-table=*.%_west


        ●      Filtering replication stream
        ●      Filtering done on relay servers
        ●      replicate­wild­*­table
                  –      Work with cross-database
                         queries




25   Copyright © 2012, Oracle and/or its affiliates. All rights reserved.
Write Your Own Library
       Write your own utility library

        ●      Create a utility library to easier work with replication
        ●      Common functions to manage replication:
                  –      Start/stop slave
                  –      Change master
                  –      Fetch master position
                  –      Fetch slave execute/read position
                  –      Fetch master host information



26   Copyright © 2012, Oracle and/or its affiliates. All rights reserved.
Write Your Own Library
       Basic functions using Bourne shell

       # Usage: mysql_exec socket sql ...                                   # Usage: stop_slave socket [ thread ]
       mysql_exec () {                                                      stop_slave () {
           sock=$1                                                             mysql_exec $1 STOP SLAVE $2
           shift 1                                                          }
           mysql ­uroot ­­vertical ­­batch 
               ­­skip­column­names                                         # Usage: start_slave socket [ thread ]
               ­­socket="$sock"                                            start_slave () {
               ­­exec "$*"                                                     mysql_exec $1 START SLAVE $2
       }                                                                    }




27   Copyright © 2012, Oracle and/or its affiliates. All rights reserved.
Write Your Own Library
       Basic functions using Bourne shell

       # Usage: change_master socket [ host [ port [ file [ pos ] ] ] ]
       change_master () {
           host=${2:+MASTER_HOST='$2'}
           port=${3:+,MASTER_PORT=$3}
           file=${4:+,MASTER_LOG_FILE='$4'}
           pos=${5:+,MASTER_LOG_POS=$5}
           mysql_exec $1 CHANGE MASTER TO $host $port $file $pos
       }

       # Usage: fetch_master_pos socket
       fetch_master_pos () {
          mysql_exec $1 SHOW MASTER STATUS |
          grep '<File|<Pos'             |
          cut ­f2 ­d:
       }



28   Copyright © 2012, Oracle and/or its affiliates. All rights reserved.
Write Your Own Library
       Basic functions using Bourne shell

       # Usage: fetch_slave_exec_pos socket
       fetch_slave_exec_pos () {
          mysql_exec $1 SHOW SLAVE STATUS |
          grep '<Relay_Master_Log_File|<Exec_Master_Log_Pos' |
          cut ­f2 ­d:
       }

       # Usage: fetch_slave_read_pos socket
       fetch_slave_read_pos () {
          mysql_exec $1 SHOW SLAVE STATUS |
          grep '<Master_Log_File|<Read_Master_Log_Pos' |
          cut ­f2 ­d:
       }




29   Copyright © 2012, Oracle and/or its affiliates. All rights reserved.
master1.example.com   master2.example.com
     Round-Robin Replication


        ●      Slave can only replicate from single
               master at a time
        ●      Use time sharing to replicate from
               several masters
                                          Stop

                                                                            Switcher
                       Start                                 Save

                                                                                            slave1.example.com
                                       Restore

30   Copyright © 2012, Oracle and/or its affiliates. All rights reserved.
Round-Robin Replication
       A version using Bourne Shell

       # Usage: fetch_host_and_pos socket
       fetch_host_and_pos () {
           mysql_exec $1 SHOW SLAVE STATUS |
           grep '<Master_(Host|Port|Log_File)|<Read_Master_Log_Pos' |
           cut -f2 -d:
       }

       # Usage: stop_and_save socket
       stop_and_save () {
         sock="/var/run/mysqld/$1.sock"
         stop_slave $socket
         fetch_host_and_pos $sock >$1.savepos
       }




31   Copyright © 2012, Oracle and/or its affiliates. All rights reserved.
Round-Robin Replication
       A version using Bourne Shell

       restore_and_start () {                                               cnt=1
         socket="/var/run/mysqld/$1.sock"                                   while true
         cat $1.savepos | {                                                 do
           read host                                                           stop_and_save mysqld.$cnt
           read port                                                           cnt=`expr $cnt % 5 + 1`
           read file                                                           restore_and_start mysqld.$cnt
           read pos                                                            sleep 60
           change_master $socket                                           done
              $host $port $file $pos
           start_slave $socket
         }
       }




32   Copyright © 2012, Oracle and/or its affiliates. All rights reserved.
Crash-safe Slaves
       Keeping replication information in sync with data
                                                                                     FILE               TABLE
        ●      Traditional Replication
                  –      Position stored in file
                  –      Update after transaction
                  –      Crash can lose update
        ●      Transactional Replication                                    ●   Repository location FILE or TABLE
                  –      Positions stored in table                                 master_info_repository
                  –      Update part of transaction                                relay_log_info_repository
                  –      Crash-safe

33   Copyright © 2012, Oracle and/or its affiliates. All rights reserved.
Crash-safe Slaves
       Steps to set up crash-safe slaves

        ●      Direct server to use table-based repository
                  –      Defaults to FILE
                             master_info_repository=TABLE
                             relay_log_info_repository=TABLE
        ●      Ensure that a transactional engine is used
                  –      InnoDB default since 5.6.6
                  –      Before 5.6.6: set the storage engine
                             ALTER TABLE slave_master_info ENGINE = InnoDB
                             ALTER TABLE slave_relay_log_info ENGINE = InnoDB

34   Copyright © 2012, Oracle and/or its affiliates. All rights reserved.
Round-Robin Replication
       A version using pure SQL

       CREATE TABLE my_masters (                                            CREATE TABLE current_master (
           idx INT PRIMARY KEY,                                                 idx INT
           host CHAR(50) NOT NULL,                                          ) ENGINE=InnoDB
           port INT NOT NULL DEFAULT 3306,
           log_file CHAR(50),
           log_pos LONG,
           UNIQUE INDEX (host,port,user)
       ) ENGINE=InnoDB

       CREATE PROCEDURE save_position()
       BEGIN
          DECLARE l_idx INT UNSIGNED;

          UPDATE my_masters AS mi, mysql.slave_relay_log_info AS rli
             SET mi.log_pos = rli.master_log_pos, mi.log_file = rli.master_log_name
           WHERE idx = (SELECT idx FROM current_master);
       END


35   Copyright © 2012, Oracle and/or its affiliates. All rights reserved.
Round-Robin Replication
       In pure SQL


        CREATE PROCEDURE fetch_next_master(OUT p_host CHAR(50), OUT p_port INT UNSIGNED,
                                           OUT p_file CHAR(50), OUT p_pos BIGINT)
        BEGIN
           DECLARE l_next_idx INT DEFAULT 1;

               SELECT idx INTO l_next_idx FROM my_masters                     Select next index,
                WHERE idx > (SELECT idx FROM current_master)                  if there is one
                ORDER BY idx LIMIT 1;

               SELECT idx INTO l_next_idx FROM my_masters                      Select the first index, if
                WHERE idx >= l_next_idx ORDER BY idx LIMIT 1;
                                                                               there were no next index
               UPDATE current_master SET idx = l_next_idx;

           SELECT host, port, log_file, log_pos                             Fetch master info using
             INTO p_host, p_port, p_file, p_pos
             FROM my_masters WHERE idx = l_next_idx;                        the index
        END
36   Copyright © 2012, Oracle and/or its affiliates. All rights reserved.
Round-Robin Replication
       In pure SQL


        CREATE EVENT multi_source ON SCHEDULE EVERY 10 SECOND DO
        BEGIN
           DECLARE l_host CHAR(50);
           DECLARE l_port INT UNSIGNED;
           DECLARE l_file CHAR(50);
           DECLARE l_pos BIGINT;

               SET SQL_LOG_BIN = 0;

           STOP SLAVE;
           START TRANSACTION;
           CALL save_current_position();
           CALL fetch_next_master(l_host, l_port, l_file, l_pos);
           CALL change_master(l_host, l_port, 'repl_user', 'xyzzy', l_file, l_pos);
           COMMIT;
           START SLAVE;
        END

37   Copyright © 2012, Oracle and/or its affiliates. All rights reserved.
Different Tables on Master and Slave


       ●      Upgrading
                 –      Example: Upgrading a topology without downtime
       ●      Saving space
                 –      Not keeping big columns on slave
       ●      Hiding data
                 –      Keeping data away from users
                 –      Note: still available in binary log and relay log – just not applied to table
       ●      Debugging and Auditing
                 –      Adding data for auditing

38   Copyright © 2012, Oracle and/or its affiliates. All rights reserved.
Different Tables on Master and Slave
       More columns on slave

       CREATE TABLE employee (
         name CHAR(40),
                                                                            Master   CREATE TABLE employee (
                                                                                       name CHAR(40),
                                                                                                                    Slave
         email CHAR(40)                                                                email CHAR(40),
                                                                                       changed TIMESTAMP
                                                                                          DEFAULT CURRENT_TIMESTAMP
                                                                                          ON UPDATE CURRENT_TIMESTAMP
       )                                                                             )

        ●      Same initial columns
        ●      Statement-based or row-based replication



39   Copyright © 2012, Oracle and/or its affiliates. All rights reserved.
Different Tables on Master and Slave
       More columns on master

       CREATE TABLE employee (                                              CREATE TABLE employee (
         name CHAR(40),                                                       name CHAR(40),
         email CHAR(40),                                                      email CHAR(40),
         password CHAR(40)                                                    password CHAR(40)
       )                     Master                                         )                       Slave

        ●      Same initial columns
        ●      Row-based replication only



40   Copyright © 2012, Oracle and/or its affiliates. All rights reserved.
Different Tables on Master and Slave
       Different types of columns on master and slave

       CREATE TABLE employee (                                              CREATE TABLE employee (
         emp_id INT,                                                          emp_id TINYINT,
         name CHAR(40),                                                       name CHAR(40),
         email CHAR(40)                                                       email CHAR(40)
       )                     Master                                         )                       Slave

        ●      Table definitions are identical
                         … except that some column type are different




41   Copyright © 2012, Oracle and/or its affiliates. All rights reserved.
Different Tables on Master and Slave
       Slave type conversions

       CREATE TABLE employee (                                              CREATE TABLE employee (
         emp_id INT,                                                          emp_id TINYINT,
         name CHAR(40),                                                       name CHAR(40),
         email CHAR(40)                                                       email CHAR(40)
       )                     Master                                         )                       Slave

        ●      Consider this statement:                      St
                                                               at
                                                                 em
                     INSERT INTO employee VALUES               Re ent
            Works fine (1, 'Bob', 'bob@example.com'),            pl     -b
                                                                   ica     a
                           (500, 'Alice', 'alice@example.com')        tio sed
             Fails silently!
                                                                         n


42   Copyright © 2012, Oracle and/or its affiliates. All rights reserved.
Different Tables on Master and Slave                                                     Before
                                                                                               MySQL 5.5.3
          Slave type conversions

          CREATE TABLE employee (                                              CREATE TABLE employee (
            emp_id TINYINT,                                                      emp_id INT,
            name CHAR(40),                                                       name CHAR(40),
            email CHAR(40)                                                       email CHAR(40)
          )                     Master                                         )                       Slave

           ●      Consider this statement:                      Ro
                                                                   w
                                                               Re -ba
                                                                 pl
                                                                   ica sed
                          INSERT INTO employee VALUES
                              (1, 'Bob', 'bob@example.com'),          tio
     Throws an         error!
                              (100, 'Alice', 'alice@example.com')         n



43      Copyright © 2012, Oracle and/or its affiliates. All rights reserved.
Different Tables on Master and Slave                                                     MySQL 5.5.3
                                                                                                and later
       Slave type conversions

        ●      @@GLOBAL.SLAVE_TYPE_CONVERSIONS
                  –      Type: SET('ALL_LOSSY', 'ALL_NON_LOSSY')
                  –      Require slave restart


        ●      Lossy conversions                                            ●   Non-lossy conversions
                  –      INT → TINYINT                                          –   TINYINT → INT
                  –      CHAR(64) → VARCHAR(32)                                 –   VARCHAR(32) → CHAR(64)
                  –      DOUBLE → FLOAT                                         –   FLOAT → DOUBLE

44   Copyright © 2012, Oracle and/or its affiliates. All rights reserved.
Different Tables on Master and Slave                                     MySQL 5.5.3
                                                                               and later
       Slave type conversions

        ●      Conversions within same domain possible
                  –      INT, TINYINT, SMALLINT, MEDIUMINT, BIGINT
                  –      CHAR(n), VARCHAR(n), TINYTEXT, TEXT, …
                  –      DECIMAL(n,m), DOUBLE, FLOAT
        ●      ALL_NON_LOSSY in SLAVE_TYPE_CONVERSIONS
                  –      Conversion to larger domains allowed
        ●      ALL_LOSSY in SLAVE_TYPE_CONVERSIONS
                  –      Conversion to smaller domains allowed (truncation/rounding may occur)

45   Copyright © 2012, Oracle and/or its affiliates. All rights reserved.
Different Tables on Master and Slave                                                              MySQL 5.5.3
                                                                                                        and later
       Slave type conversions

       CREATE TABLE employee (                                                 CREATE TABLE employee (
         emp_id TINYINT,                                                         emp_id INT,
         name VARCHAR(40),                                                       name VARCHAR(40),
         email VARCHAR(40)                                                       email VARCHAR(40)
       )                     Master                                            )                       Slave

        ●      Consider this statement:                       Ro
                                                                 w
                                                             Re -ba
                                                               pl
                                                                 ica sed
                        INSERT INTO employee VALUES
                            (1, 'Bob', 'bob@example.com'),          tio
         Works        fine!
                            (100, 'Alice', 'alice@example.com')         n

                                                            SLAVE_TYPE_CONVERSIONS = 'ALL_NON_LOSSY'

46   Copyright © 2012, Oracle and/or its affiliates. All rights reserved.
Different Tables on Master and Slave                                                              MySQL 5.5.3
                                                                                                           and later
          Slave type conversions

          CREATE TABLE employee (                                                 CREATE TABLE employee (
            emp_id INT,                                                             emp_id TINYINT,
            name VARCHAR(40),                                                       name VARCHAR(40),
            email VARCHAR(40)                                                       email VARCHAR(40)
          )                     Master                                            )                       Slave

           ●      Consider this statement:                      Ro
                                                                   w
                                                               Re -ba
                                                                 pl
                                                                   ica sed
                          INSERT INTO employee VALUES
                              (1, 'Bob', 'bob@example.com'),          tio
     Throws an         error!
                              (100, 'Alice', 'alice@example.com')         n

                                                               SLAVE_TYPE_CONVERSIONS = 'ALL_NON_LOSSY'

47      Copyright © 2012, Oracle and/or its affiliates. All rights reserved.
Master and Slave out of sync


        ●      Slave stopped with a strange error
                         ERROR 1062 (23000): Duplicate entry '3' for key 'PRIMARY'
        ●      Compare two databases using mysqldbcompare
                         mysqldbcompare
                             --server1=root@master.example.com
                             --server2=root@slave1.example.com
                             employee




48   Copyright © 2012, Oracle and/or its affiliates. All rights reserved.
Master and Slave out of sync
       Comparing two databases and finding the differences

       $ mysqldbcompare --quiet --server1=root@localhost:3309 --server2=root@localhost:3310 world
       # Checking databases world on server1 and world on server2
       #

       #
       # Data differences found among rows:
       --- world.City
       +++ world.City
       @@ -1,5 +1,5 @@
       -+-------+------------+--------------+-----------+-------------+
       -| ID    | Name       | CountryCode | District | Population |
       -+-------+------------+--------------+-----------+-------------+
       -| 3048 | Stockholm | SWE             | Lisboa   | 750348       |
       -+-------+------------+--------------+-----------+-------------+
       ++-------+-----------+--------------+-----------+-------------+
       +| ID    | Name      | CountryCode | District | Population |
       ++-------+-----------+--------------+-----------+-------------+
       +| 3048 | Helsinki | SWE             | Lisboa   | 750348      |
       ++-------+-----------+--------------+-----------+-------------+


49   Copyright © 2012, Oracle and/or its affiliates. All rights reserved.
Master and Slave out of sync
       Synchronizing master and slave databases

       $   mysqldbcompare --quiet --difftype=sql --changes-for=server2 
       >   --server1=root@master.example.com --server2=root@slave1.example.com 
       >   world
       #   Checking databases world on server1 and world on server2
       #

       #
       # Transformation for --changes-for=server2:
       #

       # Data differences found among rows:
       UPDATE world.City SET Name = 'Stockholm' WHERE ID = '3048';




50   Copyright © 2012, Oracle and/or its affiliates. All rights reserved.
Master and Slave out of sync
       Synchronizing master and slave databases

       $   mysqldbcompare --quiet --difftype=sql --changes-for=server1 
       >   --server1=root@master.example.com --server2=root@slave1.example.com 
       >   world
       #   Checking databases world on server1 and world on server2
       #

       #
       # Transformation for --changes-for=server1:
       #

       # Data differences found among rows:
       UPDATE world.City SET Name = 'Helsinki' WHERE ID = '3048';




51   Copyright © 2012, Oracle and/or its affiliates. All rights reserved.
Replication Event Checksums
                                          Master                                        Slave




                                                                              Event
                                                                            Checksums



52   Copyright © 2012, Oracle and/or its affiliates. All rights reserved.
Replication Event Checksums
       Configurations and options

        ●      Controlling checksum generation (default is CRC32 since 5.6.6)
                         SET GLOBAL BINLOG_CHECKSUM = CRC32
        ●      Enable verification on events read by dump thread
                         SET GLOBAL MASTER_VERIFY_CHECKSUM = ON
        ●      Enable verification on events read by SQL thread
                         SET GLOBAL SLAVE_SQL_VERIFY_CHECKSUM = ON




53   Copyright © 2012, Oracle and/or its affiliates. All rights reserved.
The preceding is intended to outline our general product direction. It is
     intended for information purposes only, and may not be incorporated
     into any contract. It is not a commitment to deliver any material, code,
     or functionality, and should not be relied upon in making purchasing
     decisions. The development, release, and timing of any features or
     functionality described for Oracle’s products remains at the sole
     discretion of Oracle.




54   Copyright © 2012, Oracle and/or its affiliates. All rights reserved.

More Related Content

PDF
Replication Tips & Tricks
Mats Kindahl
 
PDF
Sharding using MySQL and PHP
Mats Kindahl
 
PDF
MySQL Binary Log API Presentation - OSCON 2011
Mats Kindahl
 
PDF
Overview of Optimizer Features in 5.6 and 5.7-Manyi Lu
郁萍 王
 
PDF
MySQL Cluster NoSQL Memcached API
Mat Keep
 
PDF
MySQL EXPLAIN Explained-Norvald H. Ryeng
郁萍 王
 
PDF
The Native NDB Engine for Memcached
John David Duncan
 
PDF
Ebs dba con4696_pdf_4696_0001
jucaab
 
Replication Tips & Tricks
Mats Kindahl
 
Sharding using MySQL and PHP
Mats Kindahl
 
MySQL Binary Log API Presentation - OSCON 2011
Mats Kindahl
 
Overview of Optimizer Features in 5.6 and 5.7-Manyi Lu
郁萍 王
 
MySQL Cluster NoSQL Memcached API
Mat Keep
 
MySQL EXPLAIN Explained-Norvald H. Ryeng
郁萍 王
 
The Native NDB Engine for Memcached
John David Duncan
 
Ebs dba con4696_pdf_4696_0001
jucaab
 

What's hot (20)

PDF
MySQL Monitoring 101
Ronald Bradford
 
PDF
5050 dev nation
Arun Gupta
 
PDF
MySQL 5.7 in a Nutshell
Emily Ikuta
 
PPT
OSSCube MySQL Cluster Tutorial By Sonali At Osspac 09
OSSCube
 
PDF
Parallel Query on Exadata
Enkitec
 
PDF
New awesome features in MySQL 5.7
Zhaoyang Wang
 
PDF
REST in Piece - Administration of an Oracle Cluster/Database using REST
Christian Gohmann
 
PDF
2012 summarytables
sqlhjalp
 
PDF
MySQL 5.7 NEW FEATURES, BETTER PERFORMANCE, AND THINGS THAT WILL BREAK -- Mid...
Dave Stokes
 
PDF
[B34] MySQL最新ロードマップ – MySQL 5.7とその先へ by Ryusuke Kajiyama
Insight Technology, Inc.
 
PDF
MythBusters Globalization Support - Avoid Data Corruption
Christian Gohmann
 
PDF
Configuration beyond Java EE 8
Anatole Tresch
 
PDF
What’s New in Oracle Database 12c for PHP
Christopher Jones
 
PDF
Mysql tech day_paris_ps_and_sys
Mark Leith
 
PPTX
2015: Whats New in MySQL 5.7, At Oracle Open World, November 3rd, 2015
Geir Høydalsvik
 
PDF
Tuning SQL for Oracle Exadata: The Good, The Bad, and The Ugly Tuning SQL fo...
Enkitec
 
PDF
PNWPHP -- What are Databases so &#%-ing Difficult
Dave Stokes
 
PPT
Less18 support
Amit Bhalla
 
PDF
Drilling Deep Into Exadata Performance
Enkitec
 
PDF
MySQL Enterprise Backup - BnR Scenarios
Keith Hollman
 
MySQL Monitoring 101
Ronald Bradford
 
5050 dev nation
Arun Gupta
 
MySQL 5.7 in a Nutshell
Emily Ikuta
 
OSSCube MySQL Cluster Tutorial By Sonali At Osspac 09
OSSCube
 
Parallel Query on Exadata
Enkitec
 
New awesome features in MySQL 5.7
Zhaoyang Wang
 
REST in Piece - Administration of an Oracle Cluster/Database using REST
Christian Gohmann
 
2012 summarytables
sqlhjalp
 
MySQL 5.7 NEW FEATURES, BETTER PERFORMANCE, AND THINGS THAT WILL BREAK -- Mid...
Dave Stokes
 
[B34] MySQL最新ロードマップ – MySQL 5.7とその先へ by Ryusuke Kajiyama
Insight Technology, Inc.
 
MythBusters Globalization Support - Avoid Data Corruption
Christian Gohmann
 
Configuration beyond Java EE 8
Anatole Tresch
 
What’s New in Oracle Database 12c for PHP
Christopher Jones
 
Mysql tech day_paris_ps_and_sys
Mark Leith
 
2015: Whats New in MySQL 5.7, At Oracle Open World, November 3rd, 2015
Geir Høydalsvik
 
Tuning SQL for Oracle Exadata: The Good, The Bad, and The Ugly Tuning SQL fo...
Enkitec
 
PNWPHP -- What are Databases so &#%-ing Difficult
Dave Stokes
 
Less18 support
Amit Bhalla
 
Drilling Deep Into Exadata Performance
Enkitec
 
MySQL Enterprise Backup - BnR Scenarios
Keith Hollman
 
Ad

Similar to Replication Tips & Trick for SMUG (20)

PDF
MySQL for Large Scale Social Games
Yoshinori Matsunobu
 
PDF
Replication tutorial presentation
colderboy17
 
PDF
Advanced MySQL Replication Architectures - Luis Soares
MySQL Brasil
 
ZIP
My sql replication advanced techniques presentation
epee
 
PDF
Using The Mysql Binary Log As A Change Stream
Luís Soares
 
PDF
Keith Larson Replication
Dave Stokes
 
PDF
MySQL Replication
Mark Swarbrick
 
PPTX
MySQL Tech Tour 2015 - 5.7 Replication
Mark Swarbrick
 
PDF
MySQL 5.7 Replication News
Ted Wennmark
 
PDF
Replication features, technologies and 3rd party Extinction
Ben Mildren
 
PDF
My sql 5.6_replwebinar_may12
Mat Keep
 
PDF
MySQL User Camp: Multi-threaded Slaves
Shivji Kumar Jha
 
PDF
Percona Live 2012PPT: introduction-to-mysql-replication
mysqlops
 
PDF
Buytaert kris my_sql-pacemaker
kuchinskaya
 
PDF
Replication featuresinmysql5.7andbeyond osi-final
Sujatha Sivakumar
 
PDF
My sql with enterprise storage
Caroline_Rose
 
PDF
MySQL Replication Troubleshooting for Oracle DBAs
Sveta Smirnova
 
PDF
Drupal Camp Göteborg 2013: Skalbarhet och tillgänglighet med MySQL-replikering
Sven Sandberg
 
PDF
MySQL Proxy: Architecture and concepts of misuse
weigon
 
PDF
MySQL 5.7: Focus on Replication
Mario Beck
 
MySQL for Large Scale Social Games
Yoshinori Matsunobu
 
Replication tutorial presentation
colderboy17
 
Advanced MySQL Replication Architectures - Luis Soares
MySQL Brasil
 
My sql replication advanced techniques presentation
epee
 
Using The Mysql Binary Log As A Change Stream
Luís Soares
 
Keith Larson Replication
Dave Stokes
 
MySQL Replication
Mark Swarbrick
 
MySQL Tech Tour 2015 - 5.7 Replication
Mark Swarbrick
 
MySQL 5.7 Replication News
Ted Wennmark
 
Replication features, technologies and 3rd party Extinction
Ben Mildren
 
My sql 5.6_replwebinar_may12
Mat Keep
 
MySQL User Camp: Multi-threaded Slaves
Shivji Kumar Jha
 
Percona Live 2012PPT: introduction-to-mysql-replication
mysqlops
 
Buytaert kris my_sql-pacemaker
kuchinskaya
 
Replication featuresinmysql5.7andbeyond osi-final
Sujatha Sivakumar
 
My sql with enterprise storage
Caroline_Rose
 
MySQL Replication Troubleshooting for Oracle DBAs
Sveta Smirnova
 
Drupal Camp Göteborg 2013: Skalbarhet och tillgänglighet med MySQL-replikering
Sven Sandberg
 
MySQL Proxy: Architecture and concepts of misuse
weigon
 
MySQL 5.7: Focus on Replication
Mario Beck
 
Ad

More from Mats Kindahl (10)

PDF
Why rust?
Mats Kindahl
 
PDF
Building Scalable High Availability Systems using MySQL Fabric
Mats Kindahl
 
PDF
High-Availability using MySQL Fabric
Mats Kindahl
 
PDF
Elastic Scalability in MySQL Fabric Using OpenStack
Mats Kindahl
 
PDF
Sharding and Scale-out using MySQL Fabric
Mats Kindahl
 
PDF
MySQL Fabric: Easy Management of MySQL Servers
Mats Kindahl
 
PDF
MySQL Applier for Apache Hadoop: Real-Time Event Streaming to HDFS
Mats Kindahl
 
PDF
MySQL Sharding: Tools and Best Practices for Horizontal Scaling
Mats Kindahl
 
PDF
Python Utilities for Managing MySQL Databases
Mats Kindahl
 
PDF
Mysteries of the binary log
Mats Kindahl
 
Why rust?
Mats Kindahl
 
Building Scalable High Availability Systems using MySQL Fabric
Mats Kindahl
 
High-Availability using MySQL Fabric
Mats Kindahl
 
Elastic Scalability in MySQL Fabric Using OpenStack
Mats Kindahl
 
Sharding and Scale-out using MySQL Fabric
Mats Kindahl
 
MySQL Fabric: Easy Management of MySQL Servers
Mats Kindahl
 
MySQL Applier for Apache Hadoop: Real-Time Event Streaming to HDFS
Mats Kindahl
 
MySQL Sharding: Tools and Best Practices for Horizontal Scaling
Mats Kindahl
 
Python Utilities for Managing MySQL Databases
Mats Kindahl
 
Mysteries of the binary log
Mats Kindahl
 

Recently uploaded (20)

PDF
Software Development Methodologies in 2025
KodekX
 
PDF
Research-Fundamentals-and-Topic-Development.pdf
ayesha butalia
 
PDF
How ETL Control Logic Keeps Your Pipelines Safe and Reliable.pdf
Stryv Solutions Pvt. Ltd.
 
PPTX
Dev Dives: Automate, test, and deploy in one place—with Unified Developer Exp...
AndreeaTom
 
PDF
MASTERDECK GRAPHSUMMIT SYDNEY (Public).pdf
Neo4j
 
PDF
CIFDAQ's Market Wrap : Bears Back in Control?
CIFDAQ
 
PPTX
AI and Robotics for Human Well-being.pptx
JAYMIN SUTHAR
 
PDF
AI-Cloud-Business-Management-Platforms-The-Key-to-Efficiency-Growth.pdf
Artjoker Software Development Company
 
PDF
OFFOFFBOX™ – A New Era for African Film | Startup Presentation
ambaicciwalkerbrian
 
PPTX
What-is-the-World-Wide-Web -- Introduction
tonifi9488
 
PDF
AI Unleashed - Shaping the Future -Starting Today - AIOUG Yatra 2025 - For Co...
Sandesh Rao
 
PDF
Get More from Fiori Automation - What’s New, What Works, and What’s Next.pdf
Precisely
 
PDF
Google I/O Extended 2025 Baku - all ppts
HusseinMalikMammadli
 
PDF
Oracle AI Vector Search- Getting Started and what's new in 2025- AIOUG Yatra ...
Sandesh Rao
 
PDF
NewMind AI Weekly Chronicles - July'25 - Week IV
NewMind AI
 
PPTX
AI in Daily Life: How Artificial Intelligence Helps Us Every Day
vanshrpatil7
 
PPTX
cloud computing vai.pptx for the project
vaibhavdobariyal79
 
PPTX
Agile Chennai 18-19 July 2025 | Emerging patterns in Agentic AI by Bharani Su...
AgileNetwork
 
PPTX
Introduction to Flutter by Ayush Desai.pptx
ayushdesai204
 
PPTX
OA presentation.pptx OA presentation.pptx
pateldhruv002338
 
Software Development Methodologies in 2025
KodekX
 
Research-Fundamentals-and-Topic-Development.pdf
ayesha butalia
 
How ETL Control Logic Keeps Your Pipelines Safe and Reliable.pdf
Stryv Solutions Pvt. Ltd.
 
Dev Dives: Automate, test, and deploy in one place—with Unified Developer Exp...
AndreeaTom
 
MASTERDECK GRAPHSUMMIT SYDNEY (Public).pdf
Neo4j
 
CIFDAQ's Market Wrap : Bears Back in Control?
CIFDAQ
 
AI and Robotics for Human Well-being.pptx
JAYMIN SUTHAR
 
AI-Cloud-Business-Management-Platforms-The-Key-to-Efficiency-Growth.pdf
Artjoker Software Development Company
 
OFFOFFBOX™ – A New Era for African Film | Startup Presentation
ambaicciwalkerbrian
 
What-is-the-World-Wide-Web -- Introduction
tonifi9488
 
AI Unleashed - Shaping the Future -Starting Today - AIOUG Yatra 2025 - For Co...
Sandesh Rao
 
Get More from Fiori Automation - What’s New, What Works, and What’s Next.pdf
Precisely
 
Google I/O Extended 2025 Baku - all ppts
HusseinMalikMammadli
 
Oracle AI Vector Search- Getting Started and what's new in 2025- AIOUG Yatra ...
Sandesh Rao
 
NewMind AI Weekly Chronicles - July'25 - Week IV
NewMind AI
 
AI in Daily Life: How Artificial Intelligence Helps Us Every Day
vanshrpatil7
 
cloud computing vai.pptx for the project
vaibhavdobariyal79
 
Agile Chennai 18-19 July 2025 | Emerging patterns in Agentic AI by Bharani Su...
AgileNetwork
 
Introduction to Flutter by Ayush Desai.pptx
ayushdesai204
 
OA presentation.pptx OA presentation.pptx
pateldhruv002338
 

Replication Tips & Trick for SMUG

  • 1. Replication Tips & Tricks + some things about GTIDs Mats Kindahl [email protected] 1Copyright © 2012, Oracle and/or its affiliates. All rights reserved. Insert Information Protection Policy Classification from Slide 12
  • 2. Program Agenda  Replication setup and status checking  Slave fail-over using GTID  Binary log analysis  Crash-safe slaves  Multi-source replication 2 Copyright © 2012, Oracle and/or its affiliates. All rights reserved.
  • 3. About the Presentation This presentation will introduce you to some replication features and also briefly show tips and tricks on how to work with replication. The focus is on short ideas and each item does not go deeper into details. 3 Copyright © 2012, Oracle and/or its affiliates. All rights reserved.
  • 4. What is Replication? ● MySQL Master Server – Changes data – Sends changes to slave ● MySQL Slave Server – Receives changes from master – Applies received changes to database 4 Copyright © 2012, Oracle and/or its affiliates. All rights reserved.
  • 5. Replication Topologies Dual Master Circular Tree Simple 5 Copyright © 2012, Oracle and/or its affiliates. All rights reserved.
  • 6. Why Replication? Scaling out Writes Reads 6 Copyright © 2012, Oracle and/or its affiliates. All rights reserved.
  • 7. Why Replication? Redundancy Slave Crash Promotion New Master 7 Copyright © 2012, Oracle and/or its affiliates. All rights reserved.
  • 8. Replication Architecture Master Slave 8 Copyright © 2012, Oracle and/or its affiliates. All rights reserved.
  • 9. Reading Slave Status Understanding the fields of SHOW SLAVE STATUS ● I/O Thread Status ● SQL Thread Status – Slave_IO_Running – Slave_SQL_Running – Last_IO_Errno – Last_SQL_Errno – Last_IO_Error – Last_SQL_Error – Last_IO_Error_Timestamp – Last_SQL_Error_Timestamp ● Master being replicated from – Master_Host – Master_Port 9 Copyright © 2012, Oracle and/or its affiliates. All rights reserved.
  • 10. Reading Slave Status Understanding the fields of SHOW SLAVE STATUS ● Next event to execute – in master log coordinates – Relay_Master_Log_File + Exec_Master_Log_Pos ● Next event to execute – in relay log coordinates Relay_Log_File + Relay_Log_Pos ● Next event to read from master Master_Log_File + Read_Master_Log_Pos 10 Copyright © 2012, Oracle and/or its affiliates. All rights reserved.
  • 11. Reading the Binary Log Decoding the binary log ● Use mysqlbinlog --hexdump Show hex dump of event as comment --start-position Start dumping at a position --stop-position Stop dumping after this position # at 275 175 =373 16 10 #120927 23:11:58 server id 3 end_log_pos 373 # Position Timestamp Type Master ID Size Master Pos Flags # 113 1e c1 64 50 02 03 00 00 00 62 00 00 00 75 01 00 00 00 00 Little-endian Query 11 Copyright © 2012, Oracle and/or its affiliates. All rights reserved.
  • 12. Reading the Binary Log Decoding the binary log # at 275 #120927 23:11:58 server id 3 end_log_pos 373 # Position Timestamp Type Master ID Size Master Pos Flags # 113 1e c1 64 50 02 03 00 00 00 62 00 00 00 75 01 00 00 00 00 # 126 c5 03 00 00 00 00 00 00 04 00 00 1a 00 00 00 00 |................| # 136 00 00 01 00 00 00 00 00 00 00 00 06 03 73 74 64 |.............std| # 146 04 21 00 21 00 08 00 74 65 73 74 00 69 6e 73 65 |.......test.inse| # 156 72 74 20 69 6e 74 6f 20 74 32 20 76 61 6c 75 65 |rt.into.t2.value| # 166 73 20 28 31 2c 27 74 65 73 74 69 6e 67 27 29 |s..1..testing..| # Query thread_id=965 exec_time=0 error_code=0 SET TIMESTAMP=1348780318/*!*/; insert into t2 values (1,'testing') /*!*/; 12 Copyright © 2012, Oracle and/or its affiliates. All rights reserved.
  • 13. Reading the Binary Log Decode row events ● Use mysqlbinlog --verbose Decode row events into pseudo-SQL # at 849 # at 893 #120928 15:19:24 server id 3 end_log_pos 893 Table_map: `test`.`t2` mapped to number 48 #120928 15:19:24 server id 3 end_log_pos 941 Write_rows: table id 48 flags: STMT_END_F BINLOG ' 3KNlUBMDAAAALAAAAH0DAAAAADAAAAAAAAEABHRlc3QAAnQyAAIDDwIoAAM= 3KNlUBcDAAAAMAAAAK0DAAAAADAAAAAAAAEAAv/8AwAAAA1yb3dzIGFyZSBjb29s '/*!*/; 13 Copyright © 2012, Oracle and/or its affiliates. All rights reserved.
  • 14. Reading the Binary Log Decode row events ● Use mysqlbinlog --verbose Decode row events into pseudo-SQL # at 849 # at 893 #120928 15:19:24 server id 3 end_log_pos 893 Table_map: `test`.`t2` mapped to number 48 #120928 15:19:24 server id 3 end_log_pos 941 Write_rows: table id 48 flags: STMT_END_F BINLOG ' 3KNlUBMDAAAALAAAAH0DAAAAADAAAAAAAAEABHRlc3QAAnQyAAIDDwIoAAM= 3KNlUBcDAAAAMAAAAK0DAAAAADAAAAAAAAEAAv/8AwAAAA1yb3dzIGFyZSBjb29s '/*!*/; ### INSERT INTO test.t2 ### SET ### @1=3 ### @2='rows are cool' 14 Copyright © 2012, Oracle and/or its affiliates. All rights reserved.
  • 15. Global Transaction Identifiers (GTIDs) Handling positions in MySQL 5.5 ● Binary log positions manually handled ● Each server has it's own position ● Failing over slaves to new masters difficult – What is the position to fail over to? CHANGE MASTER TO MASTER_HOST='master1.example.com', MASTER_PORT=3306, MASTER_USER='repl_user', MASTER_PASSWORD='xyzzy', MASTER_LOG_FILE='master-bin.00001', MASTER_LOG_POS=22145; Different for different servers 15 Copyright © 2012, Oracle and/or its affiliates. All rights reserved.
  • 16. Global Transaction Identifiers (GTIDs) Enabling Global Transaction IDs ● MySQL 5.6 has Global Transaction ID – Positions independent of server ● GTID handshake – Done on connection with master – Negotiate position automatically CHANGE MASTER TO MASTER_HOST='master1.example.com', MASTER_PORT=3306, MASTER_USER='repl_user', MASTER_PASSWORD='xyzzy', MASTER_LOG_FILE='master-bin.00001', MASTER_LOG_POS=22145; MASTER_AUTO_POSITION=1; 16 Copyright © 2012, Oracle and/or its affiliates. All rights reserved.
  • 17. Global Transaction Identifiers (GTIDs) Enabling Global Transaction IDs ● Turn on GTIDs [mysqld] … ● Turn off dangerous statements gtid-mode=on – CREATE TABLE...SELECT enforce­gtid­consistency=on log-bin=master-bin – CREATE TEMPORARY TABLE log-slave-updates ● Inside transactions CHANGE MASTER TO MASTER_HOST='master1.example.com', MASTER_PORT=3306, MASTER_USER='repl_user', MASTER_PASSWORD='xyzzy', MASTER_LOG_FILE='master-bin.00001', MASTER_LOG_POS=22145; MASTER_AUTO_POSITION=1; 17 Copyright © 2012, Oracle and/or its affiliates. All rights reserved.
  • 18. Global Transaction Identifiers (GTIDs) Global Transaction ID Concepts ● Global transaction ID – A server UUID + Transaction Number a61678ba­4889­4279­9e58­45ba840af334:1 – Preserved when replicated ● Global Transaction ID Set – Sequence of Server UUID + Transaction Number Range a61678ba­4889­4279­9e58­45ba840af334:1­5, f88e2a43­a13e­11e2­98de­0021cc6850ca:12­2564 18 Copyright © 2012, Oracle and/or its affiliates. All rights reserved.
  • 19. Global Transaction Identifiers (GTIDs) Server Variables ● @@GTID_EXECUTED – GTID set of all transactions logged in the binary log ● @@GTID_PURGED – GTID set of all transaction purged from binary log – Cannot be sent to slaves 19 Copyright © 2012, Oracle and/or its affiliates. All rights reserved.
  • 20. Cloning a Slave Be My fo Creating a slave image SQ re L 5. 1. Stop the slave 6 2. Write down where slave has stopped – SHOW SLAVE STATUS – Relay_Master_Log_File + Exec_Master_Log_Pos 3. Backup slave – mysqldump – slow but safe ­­dump­slave Generate CHANGE MASTER – Physical file copy – fast but you need to shut down the server 20 Copyright © 2012, Oracle and/or its affiliates. All rights reserved.
  • 21. Cloning a Slave Be My fo Setting up the new slave SQ re L 5. 4. Restore backup on new slave 6 5. Direct the slave to the master – CHANGE MASTER – Master_Host + Master_Port – Relay_Master_Log_File + Exec_Master_Log_Pos 6. Start slave – START SLAVE 21 Copyright © 2012, Oracle and/or its affiliates. All rights reserved.
  • 22. Cloning a Slave My SQ or L 5 1. Stop the slave lat .6 er 2. Backup slave mysqldump ­­host=slave1.example.com ­­user=root     ­­dump­slave ­­set­gtid­purged >image.sql 3. Start the slave Tell slave that transactions 4. Restore image on new slave in image cannot be replicated mysql ­­host=slave2.example.com ­­user=root <image.sql 5. Start Slave 22 Copyright © 2012, Oracle and/or its affiliates. All rights reserved.
  • 23. Point in time recovery ● Use mysqlbinlog --to-datetime Stop reading when reaching date ● Example mysqlbinlog --read-from-remote-server e --host=master -uroot --position=192 ar ! --to-datetime=”2009-04-11 12:36:56” ps ing am reas st master-bin.00002[2-4] | e nc mysql -uroot --host=slave tim lly i : a ing ic r n ot on W a on m not 23 Copyright © 2012, Oracle and/or its affiliates. All rights reserved.
  • 24. Using Relay Servers ● Relieve master server by creating relay slaves ● Just keep binary logs ● Do not store data in tables – Use BLACKHOLE engine – --log-slave-updates SET STORAGE_ENGINE = BLACKHOLE ALTER TABLE table ENGINE = BLACKHOLE 24 Copyright © 2012, Oracle and/or its affiliates. All rights reserved.
  • 25. Using Relay Servers replicate-wild-do-table=*.%_east replicate-wild-do-table=*.%_west ● Filtering replication stream ● Filtering done on relay servers ● replicate­wild­*­table – Work with cross-database queries 25 Copyright © 2012, Oracle and/or its affiliates. All rights reserved.
  • 26. Write Your Own Library Write your own utility library ● Create a utility library to easier work with replication ● Common functions to manage replication: – Start/stop slave – Change master – Fetch master position – Fetch slave execute/read position – Fetch master host information 26 Copyright © 2012, Oracle and/or its affiliates. All rights reserved.
  • 27. Write Your Own Library Basic functions using Bourne shell # Usage: mysql_exec socket sql ...  # Usage: stop_slave socket [ thread ] mysql_exec () { stop_slave () {     sock=$1    mysql_exec $1 STOP SLAVE $2     shift 1 }     mysql ­uroot ­­vertical ­­batch          ­­skip­column­names          # Usage: start_slave socket [ thread ]         ­­socket="$sock"             start_slave () {         ­­exec "$*"    mysql_exec $1 START SLAVE $2 } } 27 Copyright © 2012, Oracle and/or its affiliates. All rights reserved.
  • 28. Write Your Own Library Basic functions using Bourne shell # Usage: change_master socket [ host [ port [ file [ pos ] ] ] ] change_master () {     host=${2:+MASTER_HOST='$2'}     port=${3:+,MASTER_PORT=$3}     file=${4:+,MASTER_LOG_FILE='$4'}     pos=${5:+,MASTER_LOG_POS=$5}     mysql_exec $1 CHANGE MASTER TO $host $port $file $pos } # Usage: fetch_master_pos socket fetch_master_pos () {    mysql_exec $1 SHOW MASTER STATUS |    grep '<File|<Pos'             |    cut ­f2 ­d: } 28 Copyright © 2012, Oracle and/or its affiliates. All rights reserved.
  • 29. Write Your Own Library Basic functions using Bourne shell # Usage: fetch_slave_exec_pos socket fetch_slave_exec_pos () {    mysql_exec $1 SHOW SLAVE STATUS |    grep '<Relay_Master_Log_File|<Exec_Master_Log_Pos' |    cut ­f2 ­d: } # Usage: fetch_slave_read_pos socket fetch_slave_read_pos () {    mysql_exec $1 SHOW SLAVE STATUS |    grep '<Master_Log_File|<Read_Master_Log_Pos' |    cut ­f2 ­d: } 29 Copyright © 2012, Oracle and/or its affiliates. All rights reserved.
  • 30. master1.example.com master2.example.com Round-Robin Replication ● Slave can only replicate from single master at a time ● Use time sharing to replicate from several masters Stop Switcher Start Save slave1.example.com Restore 30 Copyright © 2012, Oracle and/or its affiliates. All rights reserved.
  • 31. Round-Robin Replication A version using Bourne Shell # Usage: fetch_host_and_pos socket fetch_host_and_pos () { mysql_exec $1 SHOW SLAVE STATUS | grep '<Master_(Host|Port|Log_File)|<Read_Master_Log_Pos' | cut -f2 -d: } # Usage: stop_and_save socket stop_and_save () { sock="/var/run/mysqld/$1.sock" stop_slave $socket fetch_host_and_pos $sock >$1.savepos } 31 Copyright © 2012, Oracle and/or its affiliates. All rights reserved.
  • 32. Round-Robin Replication A version using Bourne Shell restore_and_start () { cnt=1 socket="/var/run/mysqld/$1.sock" while true cat $1.savepos | { do read host stop_and_save mysqld.$cnt read port cnt=`expr $cnt % 5 + 1` read file restore_and_start mysqld.$cnt read pos sleep 60 change_master $socket done $host $port $file $pos start_slave $socket } } 32 Copyright © 2012, Oracle and/or its affiliates. All rights reserved.
  • 33. Crash-safe Slaves Keeping replication information in sync with data FILE TABLE ● Traditional Replication – Position stored in file – Update after transaction – Crash can lose update ● Transactional Replication ● Repository location FILE or TABLE – Positions stored in table master_info_repository – Update part of transaction relay_log_info_repository – Crash-safe 33 Copyright © 2012, Oracle and/or its affiliates. All rights reserved.
  • 34. Crash-safe Slaves Steps to set up crash-safe slaves ● Direct server to use table-based repository – Defaults to FILE master_info_repository=TABLE relay_log_info_repository=TABLE ● Ensure that a transactional engine is used – InnoDB default since 5.6.6 – Before 5.6.6: set the storage engine ALTER TABLE slave_master_info ENGINE = InnoDB ALTER TABLE slave_relay_log_info ENGINE = InnoDB 34 Copyright © 2012, Oracle and/or its affiliates. All rights reserved.
  • 35. Round-Robin Replication A version using pure SQL CREATE TABLE my_masters ( CREATE TABLE current_master ( idx INT PRIMARY KEY, idx INT host CHAR(50) NOT NULL, ) ENGINE=InnoDB port INT NOT NULL DEFAULT 3306, log_file CHAR(50), log_pos LONG, UNIQUE INDEX (host,port,user) ) ENGINE=InnoDB CREATE PROCEDURE save_position() BEGIN DECLARE l_idx INT UNSIGNED; UPDATE my_masters AS mi, mysql.slave_relay_log_info AS rli SET mi.log_pos = rli.master_log_pos, mi.log_file = rli.master_log_name WHERE idx = (SELECT idx FROM current_master); END 35 Copyright © 2012, Oracle and/or its affiliates. All rights reserved.
  • 36. Round-Robin Replication In pure SQL CREATE PROCEDURE fetch_next_master(OUT p_host CHAR(50), OUT p_port INT UNSIGNED, OUT p_file CHAR(50), OUT p_pos BIGINT) BEGIN DECLARE l_next_idx INT DEFAULT 1; SELECT idx INTO l_next_idx FROM my_masters Select next index, WHERE idx > (SELECT idx FROM current_master) if there is one ORDER BY idx LIMIT 1; SELECT idx INTO l_next_idx FROM my_masters Select the first index, if WHERE idx >= l_next_idx ORDER BY idx LIMIT 1; there were no next index UPDATE current_master SET idx = l_next_idx; SELECT host, port, log_file, log_pos Fetch master info using INTO p_host, p_port, p_file, p_pos FROM my_masters WHERE idx = l_next_idx; the index END 36 Copyright © 2012, Oracle and/or its affiliates. All rights reserved.
  • 37. Round-Robin Replication In pure SQL CREATE EVENT multi_source ON SCHEDULE EVERY 10 SECOND DO BEGIN DECLARE l_host CHAR(50); DECLARE l_port INT UNSIGNED; DECLARE l_file CHAR(50); DECLARE l_pos BIGINT; SET SQL_LOG_BIN = 0; STOP SLAVE; START TRANSACTION; CALL save_current_position(); CALL fetch_next_master(l_host, l_port, l_file, l_pos); CALL change_master(l_host, l_port, 'repl_user', 'xyzzy', l_file, l_pos); COMMIT; START SLAVE; END 37 Copyright © 2012, Oracle and/or its affiliates. All rights reserved.
  • 38. Different Tables on Master and Slave ● Upgrading – Example: Upgrading a topology without downtime ● Saving space – Not keeping big columns on slave ● Hiding data – Keeping data away from users – Note: still available in binary log and relay log – just not applied to table ● Debugging and Auditing – Adding data for auditing 38 Copyright © 2012, Oracle and/or its affiliates. All rights reserved.
  • 39. Different Tables on Master and Slave More columns on slave CREATE TABLE employee ( name CHAR(40), Master CREATE TABLE employee ( name CHAR(40), Slave email CHAR(40) email CHAR(40), changed TIMESTAMP DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP ) ) ● Same initial columns ● Statement-based or row-based replication 39 Copyright © 2012, Oracle and/or its affiliates. All rights reserved.
  • 40. Different Tables on Master and Slave More columns on master CREATE TABLE employee ( CREATE TABLE employee ( name CHAR(40), name CHAR(40), email CHAR(40), email CHAR(40), password CHAR(40) password CHAR(40) ) Master ) Slave ● Same initial columns ● Row-based replication only 40 Copyright © 2012, Oracle and/or its affiliates. All rights reserved.
  • 41. Different Tables on Master and Slave Different types of columns on master and slave CREATE TABLE employee ( CREATE TABLE employee ( emp_id INT, emp_id TINYINT, name CHAR(40), name CHAR(40), email CHAR(40) email CHAR(40) ) Master ) Slave ● Table definitions are identical … except that some column type are different 41 Copyright © 2012, Oracle and/or its affiliates. All rights reserved.
  • 42. Different Tables on Master and Slave Slave type conversions CREATE TABLE employee ( CREATE TABLE employee ( emp_id INT, emp_id TINYINT, name CHAR(40), name CHAR(40), email CHAR(40) email CHAR(40) ) Master ) Slave ● Consider this statement: St at em INSERT INTO employee VALUES Re ent Works fine (1, 'Bob', '[email protected]'), pl -b ica a (500, 'Alice', '[email protected]') tio sed Fails silently! n 42 Copyright © 2012, Oracle and/or its affiliates. All rights reserved.
  • 43. Different Tables on Master and Slave Before MySQL 5.5.3 Slave type conversions CREATE TABLE employee ( CREATE TABLE employee ( emp_id TINYINT, emp_id INT, name CHAR(40), name CHAR(40), email CHAR(40) email CHAR(40) ) Master ) Slave ● Consider this statement: Ro w Re -ba pl ica sed INSERT INTO employee VALUES (1, 'Bob', '[email protected]'), tio Throws an error! (100, 'Alice', '[email protected]') n 43 Copyright © 2012, Oracle and/or its affiliates. All rights reserved.
  • 44. Different Tables on Master and Slave MySQL 5.5.3 and later Slave type conversions ● @@GLOBAL.SLAVE_TYPE_CONVERSIONS – Type: SET('ALL_LOSSY', 'ALL_NON_LOSSY') – Require slave restart ● Lossy conversions ● Non-lossy conversions – INT → TINYINT – TINYINT → INT – CHAR(64) → VARCHAR(32) – VARCHAR(32) → CHAR(64) – DOUBLE → FLOAT  – FLOAT → DOUBLE 44 Copyright © 2012, Oracle and/or its affiliates. All rights reserved.
  • 45. Different Tables on Master and Slave MySQL 5.5.3 and later Slave type conversions ● Conversions within same domain possible – INT, TINYINT, SMALLINT, MEDIUMINT, BIGINT – CHAR(n), VARCHAR(n), TINYTEXT, TEXT, … – DECIMAL(n,m), DOUBLE, FLOAT ● ALL_NON_LOSSY in SLAVE_TYPE_CONVERSIONS – Conversion to larger domains allowed ● ALL_LOSSY in SLAVE_TYPE_CONVERSIONS – Conversion to smaller domains allowed (truncation/rounding may occur) 45 Copyright © 2012, Oracle and/or its affiliates. All rights reserved.
  • 46. Different Tables on Master and Slave MySQL 5.5.3 and later Slave type conversions CREATE TABLE employee ( CREATE TABLE employee ( emp_id TINYINT, emp_id INT, name VARCHAR(40), name VARCHAR(40), email VARCHAR(40) email VARCHAR(40) ) Master ) Slave ● Consider this statement: Ro w Re -ba pl ica sed INSERT INTO employee VALUES (1, 'Bob', '[email protected]'), tio Works fine! (100, 'Alice', '[email protected]') n SLAVE_TYPE_CONVERSIONS = 'ALL_NON_LOSSY' 46 Copyright © 2012, Oracle and/or its affiliates. All rights reserved.
  • 47. Different Tables on Master and Slave MySQL 5.5.3 and later Slave type conversions CREATE TABLE employee ( CREATE TABLE employee ( emp_id INT, emp_id TINYINT, name VARCHAR(40), name VARCHAR(40), email VARCHAR(40) email VARCHAR(40) ) Master ) Slave ● Consider this statement: Ro w Re -ba pl ica sed INSERT INTO employee VALUES (1, 'Bob', '[email protected]'), tio Throws an error! (100, 'Alice', '[email protected]') n SLAVE_TYPE_CONVERSIONS = 'ALL_NON_LOSSY' 47 Copyright © 2012, Oracle and/or its affiliates. All rights reserved.
  • 48. Master and Slave out of sync ● Slave stopped with a strange error ERROR 1062 (23000): Duplicate entry '3' for key 'PRIMARY' ● Compare two databases using mysqldbcompare mysqldbcompare [email protected] [email protected] employee 48 Copyright © 2012, Oracle and/or its affiliates. All rights reserved.
  • 49. Master and Slave out of sync Comparing two databases and finding the differences $ mysqldbcompare --quiet --server1=root@localhost:3309 --server2=root@localhost:3310 world # Checking databases world on server1 and world on server2 # # # Data differences found among rows: --- world.City +++ world.City @@ -1,5 +1,5 @@ -+-------+------------+--------------+-----------+-------------+ -| ID | Name | CountryCode | District | Population | -+-------+------------+--------------+-----------+-------------+ -| 3048 | Stockholm | SWE | Lisboa | 750348 | -+-------+------------+--------------+-----------+-------------+ ++-------+-----------+--------------+-----------+-------------+ +| ID | Name | CountryCode | District | Population | ++-------+-----------+--------------+-----------+-------------+ +| 3048 | Helsinki | SWE | Lisboa | 750348 | ++-------+-----------+--------------+-----------+-------------+ 49 Copyright © 2012, Oracle and/or its affiliates. All rights reserved.
  • 50. Master and Slave out of sync Synchronizing master and slave databases $ mysqldbcompare --quiet --difftype=sql --changes-for=server2 > [email protected] [email protected] > world # Checking databases world on server1 and world on server2 # # # Transformation for --changes-for=server2: # # Data differences found among rows: UPDATE world.City SET Name = 'Stockholm' WHERE ID = '3048'; 50 Copyright © 2012, Oracle and/or its affiliates. All rights reserved.
  • 51. Master and Slave out of sync Synchronizing master and slave databases $ mysqldbcompare --quiet --difftype=sql --changes-for=server1 > [email protected] [email protected] > world # Checking databases world on server1 and world on server2 # # # Transformation for --changes-for=server1: # # Data differences found among rows: UPDATE world.City SET Name = 'Helsinki' WHERE ID = '3048'; 51 Copyright © 2012, Oracle and/or its affiliates. All rights reserved.
  • 52. Replication Event Checksums Master Slave Event Checksums 52 Copyright © 2012, Oracle and/or its affiliates. All rights reserved.
  • 53. Replication Event Checksums Configurations and options ● Controlling checksum generation (default is CRC32 since 5.6.6) SET GLOBAL BINLOG_CHECKSUM = CRC32 ● Enable verification on events read by dump thread SET GLOBAL MASTER_VERIFY_CHECKSUM = ON ● Enable verification on events read by SQL thread SET GLOBAL SLAVE_SQL_VERIFY_CHECKSUM = ON 53 Copyright © 2012, Oracle and/or its affiliates. All rights reserved.
  • 54. The preceding is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated into any contract. It is not a commitment to deliver any material, code, or functionality, and should not be relied upon in making purchasing decisions. The development, release, and timing of any features or functionality described for Oracle’s products remains at the sole discretion of Oracle. 54 Copyright © 2012, Oracle and/or its affiliates. All rights reserved.