include/master-slave.inc Warnings: Note #### Sending passwords in plain text without SSL/TLS is extremely insecure. Note #### Storing MySQL user name or password information in the master info repository is not secure and is therefore not recommended. Please consider using the USER and PASSWORD connection options for START SLAVE; see the 'START SLAVE Syntax' in the MySQL Manual for more information. [connection master] create table t1 (a int primary key) engine=rocksdb; insert into t1 values(1); SET GLOBAL debug = '+d,crash_before_writing_xid'; insert into t1 values(2); ERROR HY000: Lost connection to server during query include/rpl_reconnect.inc SET GLOBAL debug = ``; include/start_slave.inc RocksDB: Last MySQL Gtid master_uuid:2 drop table t1; include/rpl_end.inc