MySQLOnRocksDB/mysql-5.6
forked from facebook/mysql-5.6

Loading…
Make crash safe slave work #17
Closed
yoshinorim opened this Issue
· 1 comment
Owner
yoshinorim
commented
Owner
yoshinorim
commented
Committed at: a21a702
|
|
spetrunia |
Issue #17: Automatic per-index column families
…
Add support for INDEX idx(col1, ...) COMMENT '$per_index_cf' |
7ae975b
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Currently crash safe slave doesn't work on RocksDB storage engine. This is because Xid binlog event is not written at transaction commit in RocksDB, but Query event is written instead. This needs to be changed. To make Xid event is written at RocksDB commit, it is needed to add handler::prepare() method. Empty definition is fine.
In addition to that, slave_relay_log_info and slave_gtid_info, slave_worker_info tables need to be changed to RocksDB.