15 Sep
2014
15 Sep
'14
8:56 p.m.
Tim Callaghan <tmcallaghan@gmail.com> writes:
Has any work been done in MariaDB 10.0 or 10.1 to move them from their file-based location to within XtraDB (and thus potentially TokuDB)? The
In MariaDB 10.0, it is recommended to use MariaDB Global Transaction ID (GTID). With GTID, the position is stored in the table mysql.gtid_slave_pos. You can ALTER TABLE mysql.gtid_slave_pos to the engine of your choice. The slave position will be crash-safe if the underlying storage engine is. - Kristian.