Skip to content

Commit

Permalink
v1.10.0, "slightly more ones than zeoes"
Browse files Browse the repository at this point in the history
This is a small release, primarily around a change to how schemas are
stored. Maxwell now stores the `last_heartbeat_read` with each entry
in the `schemas` table, making schema management more resilient to
cases where binlog numbers are reused, but means that you must take
care if you need to roll back to an earlier version. If you deploy
v1.10.0, then roll back to an earlier version, you should manually
update all `schemas`.`last_heartbeat_read` values to `0` before
redeploying v1.10.0 or higher.

Other minor changes:

  - allow negative default numbers in columns
  - only store final binlog position if it has changed
  - blacklist internal aurora table `rds_heartbeat*'
  - log4j version bump (allows for one entry per line JSON logging)
  • Loading branch information
timbertson committed May 9, 2017
1 parent 4393815 commit e491005
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 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
ENV MAXWELL_VERSION 1.10.0-rc1
ENV MAXWELL_VERSION 1.10.0
ENV KAFKA_VERSION 0.10.1.0

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 @@ -18,7 +18,7 @@ advanced features:
parser for create/alter/drop statements (nope, there was no other way).

→ Download:
[https://github.com/zendesk/maxwell/releases/download/v1.10.0-rc1/maxwell-1.10.0-rc1.tar.gz](https://github.com/zendesk/maxwell/releases/download/v1.10.0-rc1/maxwell-1.10.0-rc1.tar.gz)
[https://github.com/zendesk/maxwell/releases/download/v1.10.0/maxwell-1.10.0.tar.gz](https://github.com/zendesk/maxwell/releases/download/v1.10.0/maxwell-1.10.0.tar.gz)
<br/>
&rarr; Source:
[https://github.com/zendesk/maxwell](https://github.com/zendesk/maxwell)
Expand Down
6 changes: 3 additions & 3 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.10.0-rc1/maxwell-1.10.0-rc1.tar.gz](https://github.com/zendesk/maxwell/releases/download/v1.10.0-rc1/maxwell-1.10.0-rc1.tar.gz)
- Download binary distro: [https://github.com/zendesk/maxwell/releases/download/v1.10.0/maxwell-1.10.0.tar.gz](https://github.com/zendesk/maxwell/releases/download/v1.10.0/maxwell-1.10.0.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.10.0-rc1/maxwell-1.10.0-rc1.tar.gz \
curl -sLo - https://github.com/zendesk/maxwell/releases/download/v1.10.0/maxwell-1.10.0.tar.gz \
| tar zxvf -
cd maxwell-1.10.0-rc1
cd maxwell-1.10.0
```

or get the docker image:
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.10.0-rc1</version>
<version>1.10.0</version>
<packaging>jar</packaging>

<name>maxwell</name>
Expand Down

0 comments on commit e491005

Please sign in to comment.