Uploaded image for project: 'MariaDB Server'
  1. MariaDB Server
  2. MDEV-27628

Lag free ALTER statement breaks replication when executing binlog_alter_two_phase = 1,0 dynamically

Details

    • Bug
    • Status: Closed (View Workflow)
    • Critical
    • Resolution: Fixed
    • 10.8(EOL)
    • 10.8.1
    • Replication
    • None

    Description

      Lag free ALTER statement breaks replication when executing binlog_alter_two_phase = 1,0 dynamically

      Testcase

      1) Configure async master-slave replication.

      config info

      gtid_strict_mode=1
      log_slave_updates=ON
      log_bin=binlog
      binlog_format=ROW
      master_info_repository=TABLE
      relay_log_info_repository=TABLE
      binlog_alter_two_phase=YES
      

      2) Execute given SQLs on master server
      Replication stops with the following error info.

                      Last_SQL_Errno: 1950
                      Last_SQL_Error: An attempt was made to binlog GTID 0-112-10 which would create an out-of-order sequence number with existing GTID 0-112-10, and gtid strict mode is enabled
       
      2022-01-26 11:01:22 6 [Note] Slave SQL thread initialized, starting replication in log 'FIRST' at position 4, relay log './galapq-relay-bin.000001' position: 4; GTID position ''
      2022-01-26 11:01:22 5 [Note] Slave I/O thread: connected to master 'repl@127.0.0.1:4070',replication starts at GTID position ''
      2022-01-26 11:01:44 6 [ERROR] Slave SQL: An attempt was made to binlog GTID 0-112-10 which would create an out-of-order sequence number with existing GTID 0-112-10, and gtid strict mode is enabled, Gtid 0-112-10, Internal MariaDB error code: 1950
      2022-01-26 11:01:44 6 [Warning] Slave: An attempt was made to binlog GTID 0-112-10 which would create an out-of-order sequence number with existing GTID 0-112-10, and gtid strict mode is enabled Error_code: 1950
      2022-01-26 11:01:44 6 [ERROR] Error running query, slave SQL thread aborted. Fix the problem, and restart the slave SQL thread with "SLAVE START". We stopped at log 'binlog.000001' position 1914; GTID position '0-112-9'
      2022-01-26 11:01:44 6 [Note] Slave SQL thread exiting, replication stopped in log 'binlog.000001' at position 1914; GTID position '0-112-9', master: 127.0.0.1:4070
      

      SQLs

      CREATE  TABLE t1 (a1 int, d1 int DEFAULT 0);
      INSERT INTO t1 VALUES  (1,1) ;
      SET binlog_alter_two_phase=YES;
      ALTER  TABLE t1  WAIT 9 RENAME COLUMN a1 TO a2;
      SET  binlog_alter_two_phase=NO;
      ALTER  TABLE t1  ALTER COLUMN d1 DROP DEFAULT;
      DROP TABLE t1;
      

      Attachments

        Issue Links

          Activity

            ramesh Ramesh Sivaraman created issue -
            ramesh Ramesh Sivaraman made changes -
            Field Original Value New Value
            ramesh Ramesh Sivaraman made changes -
            Description Lag free ALTER statement breaks replication when executing binlog_alter_two_phase = 1,0 dynamically

            Testcase

            1) Configure async master-slave replication.
            {noformat:title=config info}
            gtid_strict_mode=1
            log_slave_updates=ON
            log_bin=binlog
            binlog_format=ROW
            master_info_repository=TABLE
            relay_log_info_repository=TABLE
            binlog_alter_two_phase=YES
            {noformat}
            2) Execute given SQLs on master server
            Replication stops with the following error info.
            {noformat}
                            Last_SQL_Errno: 1950
                            Last_SQL_Error: An attempt was made to binlog GTID 0-112-10 which would create an out-of-order sequence number with existing GTID 0-112-10, and gtid strict mode is enabled

            2022-01-26 11:01:22 6 [Note] Slave SQL thread initialized, starting replication in log 'FIRST' at position 4, relay log './galapq-relay-bin.000001' position: 4; GTID position ''
            2022-01-26 11:01:22 5 [Note] Slave I/O thread: connected to master 'repl@127.0.0.1:4070',replication starts at GTID position ''
            2022-01-26 11:01:44 6 [ERROR] Slave SQL: An attempt was made to binlog GTID 0-112-10 which would create an out-of-order sequence number with existing GTID 0-112-10, and gtid strict mode is enabled, Gtid 0-112-10, Internal MariaDB error code: 1950
            2022-01-26 11:01:44 6 [Warning] Slave: An attempt was made to binlog GTID 0-112-10 which would create an out-of-order sequence number with existing GTID 0-112-10, and gtid strict mode is enabled Error_code: 1950
            2022-01-26 11:01:44 6 [ERROR] Error running query, slave SQL thread aborted. Fix the problem, and restart the slave SQL thread with "SLAVE START". We stopped at log 'binlog.000001' position 1914; GTID position '0-112-9'
            2022-01-26 11:01:44 6 [Note] Slave SQL thread exiting, replication stopped in log 'binlog.000001' at position 1914; GTID position '0-112-9', master: 127.0.0.1:4070
            {noformat}

            {code:sql}
            CREATE TABLE t1 (a1 int, d1 int DEFAULT 0);
            INSERT INTO t1 VALUES (1,1) ;
            SET binlog_alter_two_phase=YES;
            ALTER TABLE t1 WAIT 9 RENAME COLUMN a1 TO a2;
            SET binlog_alter_two_phase=NO;
            ALTER TABLE t1 ALTER COLUMN d1 DROP DEFAULT;
            DROP TABLE t1;
            {code}
            Lag free ALTER statement breaks replication when executing binlog_alter_two_phase = 1,0 dynamically

            Testcase

            1) Configure async master-slave replication.
            {noformat:title=config info}
            gtid_strict_mode=1
            log_slave_updates=ON
            log_bin=binlog
            binlog_format=ROW
            master_info_repository=TABLE
            relay_log_info_repository=TABLE
            binlog_alter_two_phase=YES
            {noformat}
            2) Execute given SQLs on master server
            Replication stops with the following error info.
            {noformat}
                            Last_SQL_Errno: 1950
                            Last_SQL_Error: An attempt was made to binlog GTID 0-112-10 which would create an out-of-order sequence number with existing GTID 0-112-10, and gtid strict mode is enabled

            2022-01-26 11:01:22 6 [Note] Slave SQL thread initialized, starting replication in log 'FIRST' at position 4, relay log './galapq-relay-bin.000001' position: 4; GTID position ''
            2022-01-26 11:01:22 5 [Note] Slave I/O thread: connected to master 'repl@127.0.0.1:4070',replication starts at GTID position ''
            2022-01-26 11:01:44 6 [ERROR] Slave SQL: An attempt was made to binlog GTID 0-112-10 which would create an out-of-order sequence number with existing GTID 0-112-10, and gtid strict mode is enabled, Gtid 0-112-10, Internal MariaDB error code: 1950
            2022-01-26 11:01:44 6 [Warning] Slave: An attempt was made to binlog GTID 0-112-10 which would create an out-of-order sequence number with existing GTID 0-112-10, and gtid strict mode is enabled Error_code: 1950
            2022-01-26 11:01:44 6 [ERROR] Error running query, slave SQL thread aborted. Fix the problem, and restart the slave SQL thread with "SLAVE START". We stopped at log 'binlog.000001' position 1914; GTID position '0-112-9'
            2022-01-26 11:01:44 6 [Note] Slave SQL thread exiting, replication stopped in log 'binlog.000001' at position 1914; GTID position '0-112-9', master: 127.0.0.1:4070
            {noformat}

            {noformat:title=SQLs}
            CREATE TABLE t1 (a1 int, d1 int DEFAULT 0);
            INSERT INTO t1 VALUES (1,1) ;
            SET binlog_alter_two_phase=YES;
            ALTER TABLE t1 WAIT 9 RENAME COLUMN a1 TO a2;
            SET binlog_alter_two_phase=NO;
            ALTER TABLE t1 ALTER COLUMN d1 DROP DEFAULT;
            DROP TABLE t1;
            {noformat}
            Elkin Andrei Elkin made changes -
            Status Open [ 1 ] In Progress [ 3 ]
            Elkin Andrei Elkin made changes -
            Assignee Andrei Elkin [ elkin ] Brandon Nesterenko [ JIRAUSER48702 ]
            Status In Progress [ 3 ] In Review [ 10002 ]
            bnestere Brandon Nesterenko made changes -
            Assignee Brandon Nesterenko [ JIRAUSER48702 ] Andrei Elkin [ elkin ]
            Status In Review [ 10002 ] Stalled [ 10000 ]
            Elkin Andrei Elkin made changes -
            Assignee Andrei Elkin [ elkin ] Brandon Nesterenko [ JIRAUSER48702 ]
            Status Stalled [ 10000 ] In Review [ 10002 ]
            bnestere Brandon Nesterenko made changes -
            Assignee Brandon Nesterenko [ JIRAUSER48702 ] Andrei Elkin [ elkin ]
            Status In Review [ 10002 ] Stalled [ 10000 ]
            Elkin Andrei Elkin made changes -
            Fix Version/s 10.8.1 [ 26815 ]
            Fix Version/s 10.8 [ 26121 ]
            Resolution Fixed [ 1 ]
            Status Stalled [ 10000 ] Closed [ 6 ]

            People

              Elkin Andrei Elkin
              ramesh Ramesh Sivaraman
              Votes:
              0 Vote for this issue
              Watchers:
              3 Start watching this issue

              Dates

                Created:
                Updated:
                Resolved:

                Git Integration

                  Error rendering 'com.xiplink.jira.git.jira_git_plugin:git-issue-webpanel'. Please contact your Jira administrators.