Skip to content

Commit 4d1bf9c

Browse files
committed
update README.md
1 parent 891ffee commit 4d1bf9c

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

README.md

+6-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
# mysql-binlog-connector-java [![Build Status](https://travis-ci.org/shyiko/mysql-binlog-connector-java.svg?branch=master)](https://travis-ci.org/shyiko/mysql-binlog-connector-java) [![Coverage Status](https://coveralls.io/repos/shyiko/mysql-binlog-connector-java/badge.svg?branch=master)](https://coveralls.io/r/shyiko/mysql-binlog-connector-java?branch=master) [![Maven Central](https://img.shields.io/maven-central/v/com.github.shyiko/mysql-binlog-connector-java.svg)](http://search.maven.org/#search%7Cga%7C1%7Cg%3A%22com.github.shyiko%22%20AND%20a%3A%22mysql-binlog-connector-java%22)
22

33

4-
MySQL Binary Log connector.
4+
MySQL Binary Log connector. @osheroff's fork of @shiyko's project, probably
5+
the "official" version of this. With help from the Debezium devs.
56

67
Initially project was started as a fork of [open-replicator](https://code.google.com/p/open-replicator),
78
but ended up as a complete rewrite. Key differences/features:
@@ -23,16 +24,17 @@ but ended up as a complete rewrite. Key differences/features:
2324

2425
## Usage
2526

26-
Get the latest JAR(s) from [here](https://search.maven.org/search?q=g:com.zendesk%20AND%20a:mysql-binlog-connector-java). Alternatively you can include following Maven dependency (available through Maven Central):
2727

2828
```xml
2929
<dependency>
3030
<groupId>com.zendesk</groupId>
3131
<artifactId>mysql-binlog-connector-java</artifactId>
32-
<version>0.23.4</version>
32+
<version>0.25.0</version>
3333
</dependency>
3434
```
3535

36+
Or get the latest JAR(s) from [here](https://search.maven.org/search?q=g:com.zendesk%20AND%20a:mysql-binlog-connector-java).
37+
3638
#### Reading binary log file
3739

3840
```java
@@ -197,14 +199,14 @@ For the insight into the internals of MySQL look [here](https://dev.mysql.com/do
197199
Some of the OSS using / built on top of mysql-binlog-conector-java:
198200
* [apache/nifi](https://github.com/apache/nifi) An easy to use, powerful, and reliable system to process and distribute data.
199201
* [debezium](https://github.com/debezium/debezium) A low latency data streaming platform for change data capture (CDC).
202+
* [zendesk/maxwell](https://github.com/zendesk/maxwell) A MySQL-to-JSON Kafka producer.
200203
* [mavenlink/changestream](https://github.com/mavenlink/changestream) - A stream of changes for MySQL built on Akka.
201204
* [mardambey/mypipe](https://github.com/mardambey/mypipe) MySQL binary log consumer with the ability to act on changed rows and publish changes to different systems with emphasis on Apache Kafka.
202205
* [ngocdaothanh/mydit](https://github.com/ngocdaothanh/mydit) MySQL to MongoDB data replicator.
203206
* [sharetribe/dumpr](https://github.com/sharetribe/dumpr) A Clojure library for live replicating data from a MySQL database.
204207
* [shyiko/rook](https://github.com/shyiko/rook) Generic Change Data Capture (CDC) toolkit.
205208
* [streamsets/datacollector](https://github.com/streamsets/datacollector) Continuous big data ingestion infrastructure.
206209
* [twingly/ecco](https://github.com/twingly/ecco) MySQL replication binlog parser in JRuby.
207-
* [zendesk/maxwell](https://github.com/zendesk/maxwell) A MySQL-to-JSON Kafka producer.
208210
* [zzt93/syncer](https://github.com/zzt93/syncer) A tool sync & manipulate data from MySQL/MongoDB to ES/Kafka/MySQL, which make 'Eventual Consistency' promise.
209211

210212
It's also used [on a large scale](https://twitter.com/atwinmutt/status/626816601078300672) in MailChimp. You can read about it [here](http://devs.mailchimp.com/blog/powering-mailchimp-pro-reporting/).

src/main/java/com/github/shyiko/mysql/binlog/event/deserialization/json/JsonBinary.java

-2
Original file line numberDiff line numberDiff line change
@@ -261,8 +261,6 @@ protected void parse(ValueType type, JsonFormatter formatter) throws IOException
261261
* <a href="https://github.com/mysql/mysql-server/blob/5.7/sql/json_binary.h">json_binary.h</a> file:
262262
* <h3>Grammar</h3>
263263
*
264-
* <h3>Grammar</h3>
265-
*
266264
* <pre>
267265
* value ::=
268266
* object |

0 commit comments

Comments
 (0)