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

xa transactions binlogged in wrong order

    XMLWordPrintable

Details

    • Bug
    • Status: Open (View Workflow)
    • Major
    • Resolution: Unresolved
    • 10.5
    • 10.5, 10.6
    • Replication, XA
    • None

    Description

      XA COMMIT is done by running hton->commit() for all participants. Typically in InnoDB-only transactions there are only two participants, binlog and InnoDB, and binlog is the first. But if we trick binlog to be the second (by starting the transaction from non-InnoDB statement), then InnoDB will commit first. That will release all locks, possibly allowing some other transaction to continue, commit, and reach binlog before this transaction's XA COMMIT gets binlogged. Test case:

      source include/have_binlog_format_row.inc;
      source include/have_innodb.inc;
      let $datadir= `select @@datadir`;
      create table t1 (a int primary key, b int) engine=innodb;
      insert t1 values (1,1),(3,3),(5,5),(7,7);
      create table t2 (m int);
      xa start '1';
      insert t2 values (1);
      update t1 set b=50 where b=5;
      xa end '1';
      xa prepare '1';
      connect con1, localhost, root;
      send update t1 set b=10 where a=5;
      connection default;
      xa commit '1';
      connection con1;
      reap;
      flush binary logs;
      exec $MYSQL_BINLOG --verbose $datadir/master-bin.000001;
      drop table t1,t2;
      

      binlog clearly shows that first transaction updates the row from (5,5) to (5,50), then the second transaction updates (5,50) to (5,10), then the first transaction commits.

      In the replication the slave would be stuck on the second update, ultimately timing out.

      This bug would be easier to repeat if one adds a delay between commits in different participants:

      --- a/sql/handler.cc
      +++ b/sql/handler.cc
      @@ -1964,6 +1964,7 @@ commit_one_phase_2(THD *thd, bool all
               ++count;
             ha_info_next= ha_info->next();
             ha_info->reset(); /* keep it conveniently zero-filled */
      +      my_sleep(1000);
           }
           trans->ha_list= 0;
           trans->no_2pc=0;
      

      Attachments

        Issue Links

          Activity

            People

              Elkin Andrei Elkin
              serg Sergei Golubchik
              Votes:
              1 Vote for this issue
              Watchers:
              5 Start watching this issue

              Dates

                Created:
                Updated:

                Git Integration

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