Flashback is a feature that allows instances, databases or tables to be rolled back to an old snapshot.
Flashback is currently supported only over DML statements (INSERT, DELETE, UPDATE). An upcoming version of MariaDB will add support for flashback over DDL statements (DROP, TRUNCATE, ALTER, etc.) by copying or moving the current table to a reserved and hidden database, and then copying or moving back when using flashback. See MDEV-10571.
Flashback is achieved in MariaDB Server using existing support for full image format binary logs (binlog_row_image=FULL), so it supports all engines.
The real work of Flashback is done by mariadb-binlog with --flashback. This causes events to be translated: INSERT to DELETE, DELETE to INSERT, and for UPDATEs, the before and after images are swapped.
When executing mariadb-binlog with --flashback, the Flashback events will be stored in memory. You should make sure your server has enough memory for this feature.
--flashback or -B that will let it work in flashback mode. binlog_format=ROW. It is not mandatory to use this option if you have already enabled those options directly. Do not use -v -vv options, as this adds verbose information to the binary log which can cause problems when importing. See MDEV-12066 and MDEV-12067.
With a table "mytable" in database "test", you can compare the output with --flashback and without.
mariadb-binlog /var/lib/mysql/mysql-bin.000001 -vv -d test -T mytable \
--start-datetime="2013-03-27 14:54:00" > review.sql
mariadb-binlog /var/lib/mysql/mysql-bin.000001 -vv -d test -T mytable \
--start-datetime="2013-03-27 14:54:00" --flashback > flashback.sql
If you know the exact position, --start-position can be used instead of --start-datetime.
Then, by importing the output file (mysql < flashback.sql), you can flash your database/table back to the specified time or position.
A common use case for Flashback is the following scenario:
--flashback (i.e. with binary logging enabled, using binlog_format=ROW, and binlog_row_image=FULL). mariadb-binlog --flashback --start-position=xyz | mysql to pipe the output of mariadb-binlog directly to the mariadb client, or save the output to a file and then direct the file to the command-line client.
© 2023 MariaDB
Licensed under the Creative Commons Attribution 3.0 Unported License and the GNU Free Documentation License.
https://mariadb.com/kb/en/flashback/