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

MySQL Binary Log connector

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

**background**: we've encounted a exception "java.io.IOException: Stumbled upon long even though int expected" when using debezium mysql connector to do binlog processing. **exception** : ``` io.debezium.DebeziumException: Failed to deserialize data...

Library version: 0.27.5 This UUID string value **ab9d25e0-64e6-469f-9873-8621910ed300** came from: java.util.UUID.randomUUID().toString() (JDK version 11) It was persisted to a MySQL 8.0 database column of type BINARY(16) using the UUID_TO_BIN() function....

resolve #134 without Break we can not go this Block ``` remainingBytes -= fieldLength; ``` So InputStream goes wrong position. @Naros @osheroff I think we need hotfix? reproduce this Issue...

According to the implement code of TransactionPayloadEventDataDeserializer: ```java // Read and store events from decompressed byte array into input stream ArrayList decompressedEvents = new ArrayList(); // may lost the CompatibilityMode...

#127 `TransactionPayloadEventDataDeserializer` need to create EventDeserializer to deserialize compress event with the same settings of `CompatibilityMode` from parent EventDeserializer

When I use mysql-binlog-connector-java to listen, the Date in WriteRowsEventData always appears to be 8 hours ahead of the correct time, even though my MySQL server is set to the...

``` "blc-fpif1-txnrepodbl1:3306" #31833 prio=5 os_prio=0 cpu=3676437.42ms elapsed=146955.63s tid=0x00007fe9bc001800 nid=0x7e58 runnable [0x00007feb830d3000] java.lang.Thread.State: RUNNABLE at java.net.SocketOutputStream.socketWrite0([email protected]/Native Method) at java.net.SocketOutputStream.socketWrite([email protected]/SocketOutputStream.java:110) at java.net.SocketOutputStream.write([email protected]/SocketOutputStream.java:150) at sun.security.ssl.SSLSocketOutputRecord.flush([email protected]/SSLSocketOutputRecord.java:271) at sun.security.ssl.OutputRecord.changeWriteCiphers([email protected]/OutputRecord.java:224) at sun.security.ssl.KeyUpdate$KeyUpdateProducer.produce([email protected]/KeyUpdate.java:321) at sun.security.ssl.KeyUpdate$KeyUpdateKickstartProducer.produce([email protected]/KeyUpdate.java:171) at sun.security.ssl.SSLHandshake.kickstart([email protected]/SSLHandshake.java:538)...

Running into TABLE_MAP deserialization errors when a table contains enum columns with non-matching charsets. Error: ``` com.github.shyiko.mysql.binlog.event.deserialization.EventDataDeserializationException: Failed to deserialize data of EventHeaderV4{timestamp=1700660745000, eventType=TABLE_MAP, serverId=1698749684, headerLength=19, dataLength=314, nextPosition= 932578372, flags=0}...

@osheroff https://github.com/debezium/debezium/pull/4959 debezium users When the connection to the Mysql database is lost, a fake Rotate Event occurs in communication with the master. so they got Fake Rotate Event. These...

Fixes #126 by introducing a configurable option to disallow the emission of artificial events to the event listeners.