In this eleventh and final post of our series, we decode the
GTID_TAGGED_LOG_EVENT — the event MySQL 8.4 introduced to carry
user-defined tags alongside the classic UUID and GNO, and along
the way meet the
new mysql::serialization framework that
encodes it.
Introduction
Back in Part 5 we deferred one event:
the GTID_TAGGED_LOG_EVENT (event type
42, 0x2a). It was introduced in MySQL 8.4 to
support tagged GTIDs, which extend the
classic UUID:GNO form with an optional
user-defined label:
55778904-0299-11f1-b1b8-4ef0c4956feb:mytag:3
└────────── SID (UUID) ───────────┘ └tag┘ └GNO
A tag …
[Read more]