Scattered notes on MariaDB redo log internals and file checkpoints.
Ivan
Redo log structure The database log (aka redo log) is used to ensure data integrity in the case of a crash or unexpected shutdown. It records changes made to the database before they are actually written (?) so that they can be replayed during recovery. Redo log is stored in ib_logfileX files....