I have addressed previously how multi-node writing causes unexpected deadlocks in PXC, at least, it is unexpected unless you know how Galera replication works. This is a complicated topic and I personally feel like I’m only just starting to wrap my head around it.
The short of it is that Galera replication is not a doing a full 2-phase commit to replicate (where all nodes commit synchronously with the client), but it is instead something Codership calls “virtually synchronous” replication. This could either be clever marketing or clever engineering, at least at face value. However, I believe it really is clever engineering and that it is probably the best compromise for performance and data protection out there.
There’s likely a lot more depth we could cover in this definition, but fundamentally “virtually synchronous replication” means:
This brings me to my topic for today, the mysterious SHOW GLOBAL STATUS variables called:
I found that understanding these helped me understand Galera replication better. If you are experiencing the “unexpected deadlocks” problem, then you are likely seeing one or both of these counters increase over time, but what do they mean?
Actually, they are two sides to the same coin (kind of). Both apply to some local transaction getting aborted and rolled back, and the difference comes down to when and how that transaction conflict was detected. It turns out there are two possible ways:
The Galera documentation states that this is the:
Total number of local transactions that failed certification test.
What is a local certification test? It’s quite simple: On COMMIT, galera takes the writeset for this transaction and does conflict detection against all pending writesets in the local queue on this node. If there is a conflict, the deadlock on COMMIT error happens (which shouldn’t happen in normal Innodb), the transaction is rolled back, and this counter is incremented.
To put it another way, some other conflicting write from some other node was committed before we could commit, and so we must abort.
This local certification failure is only triggered by a Galera writeset comparison operation comparing a given to-be-commited writeset to all other writesets enqueued locally on the local node. The local transaction always loses.
EDIT: certification happens on every node. A ‘local’ certification failure is only counted on the node that was the source of the transaction.
Again, the Galera documentation states that this is the:
Total number of local transactions that were aborted by slave transactions while in execution.
This kind of sounds like the same thing, but this is actually an abort from the opposite vector: instead of a local transaction triggering the failure on commit, this is triggered by Galera replication threads applying replicated transactions.
To be clearer: a transaction was open on this node (not-yet-committed), and a conflicting writeset from some other node that was being applied caused a locking conflict. Again, first committed (from some other node) wins, so our open transaction is again rolled back. “bf” stands for brute-force: any transaction can get aborted by galera any time it is necessary.
Note that this conflict happens only when the replicated writeset (from some other node) is being applied, not when it’s just sitting in the queue. If our local transaction got to its COMMIT and this conflicting writeset was in the queue, then it should fail the local certification test instead.
A brute force abort is only triggered by a locking conflict between a writeset being applied by a slave thread and an open transaction on the node, not by a Galera writeset comparison as in the local certification failure.
So this is the part of the post where I wanted to show that these counters were being incremented using an example from my last post. Those examples should trigger brute force aborts, but they didn’t seem to increment either of these counters on any of my testing nodes. Codership agrees this seems like a bug and is investigating. I’ll update this post if and when an actual bug is opened, but I have seen these counters being incremented in the wild, so any bug is likely some edge case.
By the way, I can’t think of how to reliably produce local certification errors without just a lot of fast modifications to a single row, because those depend on the replication queue being non-empty and I don’t know any way to pause the Galera queue for a controlled experiment.
Resources
RELATED POSTS