Skip to content
阿里巴巴 MySQL binlog 增量订阅&消费组件
Java TSQL Vue JavaScript Shell PLpgSQL Other
Branch: master
Clone or download

Latest commit

Files

Permalink
Type Name Latest commit message Commit time
Failed to load latest commit information.
.github/ISSUE_TEMPLATE fixed issue template Apr 9, 2019
.mvn/wrapper fixed mvn wrapper Mar 21, 2019
admin format Feb 28, 2020
client-adapter fixed format Mar 5, 2020
client format Feb 28, 2020
common merge pull/2120 Feb 28, 2020
connector format Feb 28, 2020
dbsync format Feb 28, 2020
deployer fixed mq spi package Feb 28, 2020
docker fixed test example Sep 2, 2019
driver format Feb 28, 2020
example format Feb 28, 2020
filter format Feb 28, 2020
images Update response time image. Aug 19, 2018
instance format Feb 28, 2020
meta [maven-release-plugin] prepare for next development iteration Sep 2, 2019
parse fix(dml): revert wrong fix Mar 13, 2020
prometheus format Feb 28, 2020
protocol [maven-release-plugin] prepare for next development iteration Sep 2, 2019
server 模块化mq connector (#2562) Feb 28, 2020
sink [maven-release-plugin] prepare for next development iteration Sep 2, 2019
store [maven-release-plugin] prepare for next development iteration Sep 2, 2019
.codecov.yml open the switch to get codecov test coverage (#1671) Apr 9, 2019
.gitignore fixed issue #2099 , support user/passwd acl and canal admin operator Aug 26, 2019
.travis.yml remove openjdk12 Jul 20, 2019
LICENSE.txt init Sep 23, 2014
README.md add Rust canal client support (#2518) Jan 15, 2020
RELEASE.txt init Sep 23, 2014
codeformat.xml fixed code template and format Apr 28, 2015
codetemplates.xml fixed code template and format Apr 28, 2015
logo.png add logo May 15, 2019
mvnw add mvnw Mar 21, 2019
pom.xml refact(canal):duplicate dependence Mar 9, 2020

README.md

build status codecov maven license average time to resolve an issue percentage of issues still open

简介

canal [kə'næl],译意为水道/管道/沟渠,主要用途是基于 MySQL 数据库增量日志解析,提供增量数据订阅和消费

早期阿里巴巴因为杭州和美国双机房部署,存在跨机房同步的业务需求,实现方式主要是基于业务 trigger 获取增量变更。从 2010 年开始,业务逐步尝试数据库日志解析获取增量变更进行同步,由此衍生出了大量的数据库增量订阅和消费业务。

基于日志增量订阅和消费的业务包括

  • 数据库镜像
  • 数据库实时备份
  • 索引构建和实时维护(拆分异构索引、倒排索引等)
  • 业务 cache 刷新
  • 带业务逻辑的增量数据处理

当前的 canal 支持源端 MySQL 版本包括 5.1.x , 5.5.x , 5.6.x , 5.7.x , 8.0.x

工作原理

MySQL主备复制原理

  • MySQL master 将数据变更写入二进制日志( binary log, 其中记录叫做二进制日志事件binary log events,可以通过 show binlog events 进行查看)
  • MySQL slave 将 master 的 binary log events 拷贝到它的中继日志(relay log)
  • MySQL slave 重放 relay log 中事件,将数据变更反映它自己的数据

canal 工作原理

  • canal 模拟 MySQL slave 的交互协议,伪装自己为 MySQL slave ,向 MySQL master 发送dump 协议
  • MySQL master 收到 dump 请求,开始推送 binary log 给 slave (即 canal )
  • canal 解析 binary log 对象(原始为 byte 流)

重要版本更新说明

  1. canal 1.1.x 版本(release_note),性能与功能层面有较大的突破,重要提升包括:
  1. canal 1.1.4版本,迎来最重要的WebUI能力,引入canal-admin工程,支持面向WebUI的canal动态管理能力,支持配置、任务、日志等在线白屏运维能力,具体文档:Canal Admin Guide

文档

多语言

canal 特别设计了 client-server 模式,交互协议使用 protobuf 3.0 , client 端可采用不同语言实现不同的消费逻辑,欢迎大家提交 pull request

canal 作为 MySQL binlog 增量获取和解析工具,可将变更记录投递到 MQ 系统中,比如 Kafka/RocketMQ,可以借助于 MQ 的多语言能力

相关开源

问题反馈

You can’t perform that action at this time.