MySQL Forums
Forum List  »  NDB clusters

Change NDB transaction behavior to mimic InnoDB
Posted by: Matthew Boehm
Date: January 13, 2016 12:31PM

Hello,
We have a Master/Slave cluster setup. Looking at binary logs on the master, I can see that many independent transactions get "bundled up" in to 1 larger transaction.

I can see "BEGIN; <several hundred DMLs>; COMMIT;" in the binlog of the master. We have autocommit=ON.

With InnoDB, I would see "BEGIN; <1 DML>; COMMIT;" for each transaction.

How can I turn off this behavior in NDB so that each transaction is actually it's own transaction?

I believe this is causing our consistency checks to report false-positives because things are being done out of order.

Thanks,
Matthew

Options: ReplyQuote


Subject
Views
Written By
Posted
Change NDB transaction behavior to mimic InnoDB
1708
January 13, 2016 12:31PM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.