yennanliu / maxwell

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

Home Page:https://maxwells-daemon.io/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

This is Maxwell's daemon, a change data capture application that reads MySQL binlogs and writes data changes as JSON to Kafka, Kinesis, and other streaming platforms.

↓ Download | ⚝ Source / Community | ☝ Getting Started | ☷ Reference

What's it for?

  • ETL of all sorts
  • maintaining an audit log of all changes to your database
  • cache building/expiring
  • search indexing
  • inter-service communication

It goes like this:

  mysql> update `test`.`maxwell` set mycol = 55, daemon = 'Stanislaw Lem';
  maxwell -> kafka: 
  {
    "database": "test",
    "table": "maxwell",
    "type": "insert",
    "ts": 1449786310,
    "data": { "id":1, "daemon": "Stanislaw Lem", "mycol": 55 },
    "old": { "mycol":, 23, "daemon": "what once was" }
  }

About

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

https://maxwells-daemon.io/

License:Other


Languages

Language:Java 94.7%Language:ANTLR 2.9%Language:Shell 1.0%Language:Ruby 0.8%Language:JavaScript 0.4%Language:Dockerfile 0.1%Language:Makefile 0.1%