mysql-binlog-connector-java icon indicating copy to clipboard operation
mysql-binlog-connector-java copied to clipboard

MySQL Binary Log connector

Results 102 mysql-binlog-connector-java issues
Sort by recently updated
recently updated
newest added

The current implementation of `BinaryLogClient::disconnect` closes the underlying socket with only a TCP RST packet. To release any resources allocated on the server, the client should send COM_QUIT (MySQL protocol)....

Steps to re-produce: CREATE TABLE ``` CREATE TABLE `user_series` ( `id` varchar(255) NOT NULL, `document` json DEFAULT NULL, `auth_meta` json DEFAULT NULL, `created_time` bigint(20) DEFAULT NULL, `updated_time` bigint(20) DEFAULT NULL,...

Now, we have a worker thread to connect to remote mysql and listen event. When shutting down, how to close the client? For the time being, we do the following,...

Hi, is there any way to limit the speed of events? My APP sync mysql events realtime from backup db. But there is some peeks, which means high cpu and...

I have modified BinlogClient.java code to trace issue. below are the exception I'm getting. In this case is possible to connect again? I'm using version - v_0_13_0. I'm getting such...

---------- WIP Note: 1. Still need to add MariaDB vagrant box. 2. This PR builds on a commit that is submitted at https://github.com/shyiko/mysql-binlog-connector-java/pull/279 ------------ The main change in this PR...

The PR separates some base code that was in `BinaryLogClientIntegrationTest` into a new class `BinaryLogClientIntegrationTestBase`. Both `BinaryLogClientIntegrationTest` and `BinaryLogClientGTIDIntegrationTest` now inherits from the new class.

The tests in `BinaryLogClientIntegrationTest` are being run twice because `BinaryLogClientGTIDIntegrationTest` inherits `BinaryLogClientIntegrationTest`. Furthermore, some tests could fail due to parallel execution. This failure is flaky Below is one examples. Example...

I'm attempting to use the library for a project at my job, and I'm running into a problem because the `BinaryLogClient` will continue dispatching events to every `EventListener`, even if...

mysql datetime support percision(0-6) since 5.7 https://dev.mysql.com/doc/refman/5.7/en/fractional-seconds.html test table: ``` CREATE TABLE `table_time` ( `id` bigint(20) NOT NULL, `Column1-time` time DEFAULT NULL, `Column1-timestamp` timestamp(6) NULL DEFAULT NULL, `Column1-date` date DEFAULT...