From 15d5b72b4dc89d7ca9e13752d993f4e254c61795 Mon Sep 17 00:00:00 2001 From: Ben Osheroff Date: Mon, 20 Feb 2017 16:09:57 +1100 Subject: [PATCH] v1.8.1, "famous is faster, don't have to be talented" - performance improves in capturing and restoring schema, thx Joren Minnaert - Allow for capturing from a separate mysql host (adds support for using Maxscale as a replication proxy), thx Adam Szkoda --- Dockerfile | 2 +- README.md | 2 +- docs/docs/quickstart.md | 10 +++++----- pom.xml | 2 +- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Dockerfile b/Dockerfile index 2ae04865e..124a052e6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ FROM java:openjdk-7 -ENV MAXWELL_VERSION 1.8.0 +ENV MAXWELL_VERSION 1.8.1 ENV KAFKA_VERSION 0.10.1.0 RUN apt-get update && apt-get -y upgrade diff --git a/README.md b/README.md index 1a8fe9340..660e61bc2 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ advanced features: parser for create/alter/drop statements (nope, there was no other way). → Download: -[https://github.com/zendesk/maxwell/releases/download/v1.8.0/maxwell-1.8.0.tar.gz](https://github.com/zendesk/maxwell/releases/download/v1.8.0/maxwell-1.8.0.tar.gz) +[https://github.com/zendesk/maxwell/releases/download/v1.8.1/maxwell-1.8.1.tar.gz](https://github.com/zendesk/maxwell/releases/download/v1.8.1/maxwell-1.8.1.tar.gz)
→ Source: [https://github.com/zendesk/maxwell](https://github.com/zendesk/maxwell) diff --git a/docs/docs/quickstart.md b/docs/docs/quickstart.md index ee5158887..25b2f54a8 100644 --- a/docs/docs/quickstart.md +++ b/docs/docs/quickstart.md @@ -1,13 +1,13 @@ ### Download *** -- Download binary distro: [https://github.com/zendesk/maxwell/releases/download/v1.8.0/maxwell-1.8.0.tar.gz](https://github.com/zendesk/maxwell/releases/download/v1.8.0/maxwell-1.8.0.tar.gz) +- Download binary distro: [https://github.com/zendesk/maxwell/releases/download/v1.8.1/maxwell-1.8.1.tar.gz](https://github.com/zendesk/maxwell/releases/download/v1.8.1/maxwell-1.8.1.tar.gz) - Sources and bug tracking is available on github: [https://github.com/zendesk/maxwell](https://github.com/zendesk/maxwell) - Obligatory copy/paste to terminal: ``` -curl -sLo - https://github.com/zendesk/maxwell/releases/download/v1.8.0/maxwell-1.8.0.tar.gz \ +curl -sLo - https://github.com/zendesk/maxwell/releases/download/v1.8.1/maxwell-1.8.1.tar.gz \ | tar zxvf - -cd maxwell-1.8.0 +cd maxwell-1.8.1 ``` or get the docker image: @@ -57,7 +57,7 @@ mysql> GRANT ALL on maxwell.* to 'maxwell'@'localhost'; Useful for smoke-testing the thing. ``` -bin/maxwell --user='maxwell' --password='XXXXXX' --host='1.8.0.0.1' --producer=stdout +bin/maxwell --user='maxwell' --password='XXXXXX' --host='1.8.1.0.1' --producer=stdout ``` If all goes well you'll see maxwell replaying your inserts: @@ -95,7 +95,7 @@ docker run -v /Users:/Users -it --rm osheroff/maxwell bin/maxwell --config=/User Boot kafka as described here: [http://kafka.apache.org/documentation.html#quickstart](http://kafka.apache.org/documentation.html#quickstart), then: ``` -bin/maxwell --user='maxwell' --password='XXXXXX' --host='1.8.0.0.1' \ +bin/maxwell --user='maxwell' --password='XXXXXX' --host='1.8.1.0.1' \ --producer=kafka --kafka.bootstrap.servers=localhost:9092 ``` diff --git a/pom.xml b/pom.xml index 401f3e0a6..d99269867 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ com.zendesk maxwell - 1.8.0 + 1.8.1 jar maxwell