mysql-binlog-connector-java
mysql-binlog-connector-java copied to clipboard
MySQL Binary Log connector
We are observing that binary(16) fields appear to be truncated when they have trailing 0 bytes (i.e. null terminated) in them. A detailed write up is here: https://issues.jboss.org/browse/DBZ-254 We are...
In those processes, they all use this method: `com.github.shyiko.mysql.binlog.event.deserialization.AbstractRowsEventDataDeserializer#asUnixTime(int year, int month, int day, int hour, int minute, int second, int millis)` to return a timestamp, and it just simply...
There is fractional time support for TIMESTAMPV2, but none for TIMESTAMP. Is it intentional, or am I missing something here ? I am using 0.9.2 version of library and mariadb...
Addresses https://github.com/shyiko/mysql-binlog-connector-java/issues/15 Roadmap to this patch: 1. Most of the code in `BinaryLogClient` has been moved to a `AbstractBinaryLogClient` superclass. 2. `AbstractBinaryLogClient`, instead of using the listener classes, delegates lifecycle...
Add tests so that #137 #138 would not happen again.
In the MySQL to MongoDB replication tool [Mydit](https://github.com/ngocdaothanh/mydit), I continuously save binlog position to MongoDB. When the replication tool starts, I use `BinaryLogClient#setBinlogFilename` and BinaryLogClient#setBinlogPosition` to load the last binlog...
Hi, i'm wondering: BinaryLogClient#connect() should be blocking and usually is at first, but when i restart mysql after connect() is called, connect() no longer blocks, but is returning, and mysql-binlog-connector...
... using Queue. NOTE: make sure listeners are always executed on the same thread.