Skip to content

Commit

Permalink
v1.7.1, "blame it on your seratonin"
Browse files Browse the repository at this point in the history
- bootstrapping now can take a `--where` clause
- performance improvements in the kafka producer
  • Loading branch information
Ben Osheroff committed Jan 24, 2017
1 parent c6cc9d6 commit 1240d15
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
FROM java:openjdk-7-jre
ENV MAXWELL_VERSION 1.7.0
ENV MAXWELL_VERSION 1.7.1

RUN apt-get update && apt-get -y upgrade

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.7.0/maxwell-1.7.0.tar.gz](https://github.com/zendesk/maxwell/releases/download/v1.7.0/maxwell-1.7.0.tar.gz)
[https://github.com/zendesk/maxwell/releases/download/v1.7.1/maxwell-1.7.1.tar.gz](https://github.com/zendesk/maxwell/releases/download/v1.7.1/maxwell-1.7.1.tar.gz)
<br/>
&rarr; Source:
[https://github.com/zendesk/maxwell](https://github.com/zendesk/maxwell)
Expand Down
10 changes: 5 additions & 5 deletions docs/docs/quickstart.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
### Download
***
- Download binary distro: [https://github.com/zendesk/maxwell/releases/download/v1.7.0/maxwell-1.7.0.tar.gz](https://github.com/zendesk/maxwell/releases/download/v1.7.0/maxwell-1.7.0.tar.gz)
- Download binary distro: [https://github.com/zendesk/maxwell/releases/download/v1.7.1/maxwell-1.7.1.tar.gz](https://github.com/zendesk/maxwell/releases/download/v1.7.1/maxwell-1.7.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.7.0/maxwell-1.7.0.tar.gz \
curl -sLo - https://github.com/zendesk/maxwell/releases/download/v1.7.1/maxwell-1.7.1.tar.gz \
| tar zxvf -
cd maxwell-1.7.0
cd maxwell-1.7.1
```

or get the docker image:
Expand Down Expand Up @@ -58,7 +58,7 @@ mysql> GRANT ALL on maxwell.* to 'maxwell'@'localhost';
Useful for smoke-testing the thing.

```
bin/maxwell --user='maxwell' --password='XXXXXX' --host='127.0.0.1' --producer=stdout
bin/maxwell --user='maxwell' --password='XXXXXX' --host='1.7.1.0.1' --producer=stdout
```

(or docker):
Expand All @@ -83,7 +83,7 @@ Query OK, 1 row affected (0.04 sec)
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='127.0.0.1' \
bin/maxwell --user='maxwell' --password='XXXXXX' --host='1.7.1.0.1' \
--producer=kafka --kafka.bootstrap.servers=localhost:9092
```

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>com.zendesk</groupId>
<artifactId>maxwell</artifactId>
<version>1.7.0</version>
<version>1.7.1</version>
<packaging>jar</packaging>

<name>maxwell</name>
Expand Down

0 comments on commit 1240d15

Please sign in to comment.