# Maxwell **Repository Path**: bigDwch/Maxwell ## Basic Information - **Project Name**: Maxwell - **Description**: Maxwell 是一个读取 MySQL binlogs 并将修改行字段的更新写入 Kafka, Kinesis, RabbitMQ, Google Cloud Pub/Sub 或 - **Primary Language**: Ruby - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: https://www.oschina.net/p/maxwell - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 14 - **Created**: 2021-05-06 - **Last Updated**: 2024-06-09 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README
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.33.0/maxwell-1.33.0.tar.gz](https://github.com/zendesk/maxwell/releases/download/v1.33.0/maxwell-1.33.0.tar.gz)
Source:
[https://github.com/zendesk/maxwell](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"} } ```