sleep-NULL / binlog-migration

Mysql binlog migration tool

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

binlog-migration

Mysql binlog migration tool

Reference resources

Mysql Server config

server_id=1
log_bin=mysql-bin
binlog-format=ROW
character_set_server=utf8

Example

BinlogClient binlogClient = new BinlogClient("localhost", 3306, "canal", "canal", 2, "mysql-bin.000001", 4);
binlogClient.setListener(new EventListener() {
	@Override
	public void onEentry(Entry entry) {
		System.out.println(entry);
	}
});
binlogClient.start();

About

Mysql binlog migration tool


Languages

Language:Java 96.8%Language:Shell 3.2%