Skip to content
This repository was archived by the owner on Mar 27, 2025. It is now read-only.
/ maxwell Public archive
forked from zendesk/maxwell

Maxwell's daemon, a mysql-to-json kafka producer

License

Notifications You must be signed in to change notification settings

ClearTax/maxwell

This branch is 14 commits ahead of, 951 commits behind zendesk/maxwell:master.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

1e5a7a2 Â· Jul 21, 2020
Jul 21, 2020
Jan 27, 2019
Oct 10, 2019
Oct 18, 2019
Mar 26, 2015
Apr 9, 2020
Jan 11, 2020
Mar 2, 2017
Feb 17, 2017
May 23, 2016
Dec 29, 2017
Aug 26, 2019
Aug 16, 2019
Oct 18, 2019
Oct 18, 2019
Nov 28, 2016
Sep 29, 2018
Oct 18, 2019
Sep 20, 2019
Jan 2, 2017
Jan 10, 2020

Repository files navigation

This is Maxwell's daemon, an application that reads MySQL binlogs and writes row updates as JSON to Kafka, Kinesis, or other streaming platforms. Maxwell has low operational overhead, requiring nothing but mysql and a place to write to. Its common use cases include ETL, cache building/expiring, metrics collection, search indexing and inter-service communication. Maxwell gives you some of the benefits of event sourcing without having to re-architect your entire platform.

Download:
https://github.com/zendesk/maxwell/releases/download/v1.23.2/maxwell-1.23.2.tar.gz
Source:
https://github.com/zendesk/maxwell

  mysql> insert into `test`.`maxwell` set id = 1, daemon = 'Stanislaw Lem';
  maxwell: {
    "database": "test",
    "table": "maxwell",
    "type": "insert",
    "ts": 1449786310,
    "xid": 940752,
    "commit": true,
    "data": { "id":1, "daemon": "Stanislaw Lem" }
  }
  mysql> update test.maxwell set daemon = 'firebus!  firebus!' where id = 1;
  maxwell: {
    "database": "test",
    "table": "maxwell",
    "type": "update",
    "ts": 1449786341,
    "xid": 940786,
    "commit": true,
    "data": {"id":1, "daemon": "Firebus!  Firebus!"},
    "old":  {"daemon": "Stanislaw Lem"}
  }

About

Maxwell's daemon, a mysql-to-json kafka producer

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Java 79.1%
  • TSQL 15.2%
  • ANTLR 2.9%
  • Shell 1.0%
  • Ruby 0.9%
  • Python 0.4%
  • Other 0.5%