From 9d84f60d123610fa54bee8d25e4e1279867548dc Mon Sep 17 00:00:00 2001 From: Ben Osheroff Date: Thu, 29 Oct 2015 16:53:00 -0700 Subject: [PATCH] v0.13.1 --- Dockerfile | 2 +- bump | 3 +-- docs/docs/quickstart.md | 4 ++-- docs/site/mkdocs/search_index.json | 2 +- docs/site/quickstart/index.html | 6 +++--- docs/site/sitemap.xml | 12 ++++++------ pom.xml | 2 +- 7 files changed, 15 insertions(+), 16 deletions(-) diff --git a/Dockerfile b/Dockerfile index b811df72d..a8da5f917 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,7 @@ RUN apt-get update && apt-get install -y openjdk-7-jre curl RUN mkdir /app WORKDIR /app -RUN curl -sLo - https://github.com/zendesk/maxwell/releases/download/v0.13.0/maxwell-0.13.0.tar.gz | tar zxvf - +RUN curl -sLo - https://github.com/zendesk/maxwell/releases/download/v0.13.1/maxwell-0.13.1.tar.gz | tar zxvf - RUN mv maxwell-*/* . ADD REVISION / diff --git a/bump b/bump index 203cffe01..b96966bf1 100755 --- a/bump +++ b/bump @@ -13,5 +13,4 @@ then fi git grep -lF $CURRENT_REV | grep -v search_index.json | xargs sed -ie "s|$CURRENT_REV|$1|g" - - +docs/build diff --git a/docs/docs/quickstart.md b/docs/docs/quickstart.md index 10117282e..c85d35a3a 100644 --- a/docs/docs/quickstart.md +++ b/docs/docs/quickstart.md @@ -30,9 +30,9 @@ mysql> GRANT ALL on maxwell.* to 'maxwell'@'localhost'; You'll need a version 7 of a JVM. ``` -curl -sLo - https://github.com/zendesk/maxwell/releases/download/v0.13.0/maxwell-0.13.0.tar.gz \ +curl -sLo - https://github.com/zendesk/maxwell/releases/download/v0.13.1/maxwell-0.13.1.tar.gz \ | tar zxvf - -cd maxwell-0.13.0 +cd maxwell-0.13.1 ``` diff --git a/docs/site/mkdocs/search_index.json b/docs/site/mkdocs/search_index.json index ac7cb64a7..2bc23d1b2 100644 --- a/docs/site/mkdocs/search_index.json +++ b/docs/site/mkdocs/search_index.json @@ -7,7 +7,7 @@ }, { "location": "/quickstart/", - "text": "Row based replication\n\n\nMaxwell can only operate if row-based replication is on.\n\n\n$ vi my.cnf\n\n[mysqld]\nserver-id=1\nlog-bin=master\nbinlog_format=row\n\n\n\n\nGrant permissions\n\n\nmysql\n GRANT ALL on maxwell.* to 'maxwell'@'%' identified by 'XXXXXX';\nmysql\n GRANT SELECT, REPLICATION CLIENT, REPLICATION SLAVE on *.* to 'maxwell'@'%';\n\n# or for running maxwell locally:\n\nmysql\n GRANT SELECT, REPLICATION CLIENT, REPLICATION SLAVE on *.* to 'maxwell'@'localhost' identified by 'XXXXXX';\nmysql\n GRANT ALL on maxwell.* to 'maxwell'@'localhost';\n\n\n\n\n\nInstall maxwell\n\n\nYou'll need a version 7 of a JVM.\n\n\ncurl -sLo - https://github.com/zendesk/maxwell/releases/download/v0.12.0/maxwell-0.12.0.tar.gz \\\n | tar zxvf -\ncd maxwell-0.12.0\n\n\n\n\nRun with stdout producer\n\n\nUseful for smoke-testing the thing.\n\n\nbin/maxwell --user='maxwell' --password='XXXXXX' --host='127.0.0.1' --producer=stdout\n\n\n\n\nIf all goes well you'll see maxwell replaying your inserts:\n\n\nmysql\n insert into test.maxwell set id = 5, daemon = 'firebus! firebus!';\nQuery OK, 1 row affected (0.04 sec)\n\n(maxwell)\n{\ntable\n:\nmaxwell\n,\ntype\n:\ninsert\n,\ndata\n:{\nid\n:5,\ndaemon\n:\nfirebus! firebus!\n},\nts\n: 123456789}\n\n\n\n\nRun with kafka producer\n\n\nBoot kafka as described here: \nhttp://kafka.apache.org/07/quickstart.html\n, then:\n\n\nbin/maxwell --user='maxwell' --password='XXXXXX' --host='127.0.0.1' \\\n --producer=kafka --kafka.bootstrap.servers=localhost:9092\n\n\n\n\nThis will start writing to the topic \"maxwell\".", + "text": "Row based replication\n\n\nMaxwell can only operate if row-based replication is on.\n\n\n$ vi my.cnf\n\n[mysqld]\nserver-id=1\nlog-bin=master\nbinlog_format=row\n\n\n\n\nGrant permissions\n\n\nmysql\n GRANT ALL on maxwell.* to 'maxwell'@'%' identified by 'XXXXXX';\nmysql\n GRANT SELECT, REPLICATION CLIENT, REPLICATION SLAVE on *.* to 'maxwell'@'%';\n\n# or for running maxwell locally:\n\nmysql\n GRANT SELECT, REPLICATION CLIENT, REPLICATION SLAVE on *.* to 'maxwell'@'localhost' identified by 'XXXXXX';\nmysql\n GRANT ALL on maxwell.* to 'maxwell'@'localhost';\n\n\n\n\n\nInstall maxwell\n\n\nYou'll need a version 7 of a JVM.\n\n\ncurl -sLo - https://github.com/zendesk/maxwell/releases/download/v0.13.1/maxwell-0.13.1.tar.gz \\\n | tar zxvf -\ncd maxwell-0.13.1\n\n\n\n\nRun with stdout producer\n\n\nUseful for smoke-testing the thing.\n\n\nbin/maxwell --user='maxwell' --password='XXXXXX' --host='127.0.0.1' --producer=stdout\n\n\n\n\nIf all goes well you'll see maxwell replaying your inserts:\n\n\nmysql\n insert into test.maxwell set id = 5, daemon = 'firebus! firebus!';\nQuery OK, 1 row affected (0.04 sec)\n\n(maxwell)\n{\ntable\n:\nmaxwell\n,\ntype\n:\ninsert\n,\ndata\n:{\nid\n:5,\ndaemon\n:\nfirebus! firebus!\n},\nts\n: 123456789}\n\n\n\n\nRun with kafka producer\n\n\nBoot kafka as described here: \nhttp://kafka.apache.org/07/quickstart.html\n, then:\n\n\nbin/maxwell --user='maxwell' --password='XXXXXX' --host='127.0.0.1' \\\n --producer=kafka --kafka.bootstrap.servers=localhost:9092\n\n\n\n\nThis will start writing to the topic \"maxwell\".", "title": "Quick Start" }, { diff --git a/docs/site/quickstart/index.html b/docs/site/quickstart/index.html index 1dec323d7..1d9f6b06f 100644 --- a/docs/site/quickstart/index.html +++ b/docs/site/quickstart/index.html @@ -121,9 +121,9 @@

Grant permissions

Install maxwell

You'll need a version 7 of a JVM.

-
curl -sLo - https://github.com/zendesk/maxwell/releases/download/v0.13.0/maxwell-0.13.0.tar.gz \
+
curl -sLo - https://github.com/zendesk/maxwell/releases/download/v0.13.1/maxwell-0.13.1.tar.gz \
        | tar zxvf -
-cd maxwell-0.13.0
+cd maxwell-0.13.1
 

Run with stdout producer

@@ -154,4 +154,4 @@

Run with kafka producer

- + \ No newline at end of file diff --git a/docs/site/sitemap.xml b/docs/site/sitemap.xml index d18b178db..9f1ba7231 100644 --- a/docs/site/sitemap.xml +++ b/docs/site/sitemap.xml @@ -4,7 +4,7 @@ None/ - 2015-10-28 + 2015-10-29 daily @@ -12,7 +12,7 @@ None/quickstart/ - 2015-10-28 + 2015-10-29 daily @@ -20,7 +20,7 @@ None/config/ - 2015-10-28 + 2015-10-29 daily @@ -28,7 +28,7 @@ None/kafka/ - 2015-10-28 + 2015-10-29 daily @@ -36,7 +36,7 @@ None/dataformat/ - 2015-10-28 + 2015-10-29 daily @@ -44,7 +44,7 @@ None/compat/ - 2015-10-28 + 2015-10-29 daily diff --git a/pom.xml b/pom.xml index f10d536b8..9834a18a0 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ com.zendesk maxwell - 0.13.0 + 0.13.1 jar maxwell