Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/starcwang/canal_mysql_elasticsearch_sync
基于canal的mysql和elasticsearch实时同步方案,支持增量同步和全量同步
https://github.com/starcwang/canal_mysql_elasticsearch_sync
binlog canal elasticsearch mysql synchronization
Last synced: about 2 months ago
JSON representation
基于canal的mysql和elasticsearch实时同步方案,支持增量同步和全量同步
- Host: GitHub
- URL: https://github.com/starcwang/canal_mysql_elasticsearch_sync
- Owner: starcwang
- License: apache-2.0
- Created: 2017-08-25T09:14:18.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2021-08-09T20:42:47.000Z (over 3 years ago)
- Last Synced: 2023-11-07T17:33:42.463Z (about 1 year ago)
- Topics: binlog, canal, elasticsearch, mysql, synchronization
- Language: Java
- Homepage:
- Size: 80.1 KB
- Stars: 484
- Watchers: 33
- Forks: 153
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# canal_mysql_elasticsearch_sync 支持请star✨
# 交流Q群:733688083**canal于v1.1.2版本后,已支持自动同步到Elasticsearch。赞canal![canal传送门](https://github.com/alibaba/canal)**
基于 *canal* 的 *Mysql* 与 *Elasticsearch* 实时同步的 *javaweb* 服务。
canal是阿里巴巴mysql数据库binlog的增量订阅&消费组件。## 工作原理
### 全量
暴露Http接口(接口定义见[wiki](https://github.com/starcwang/canal_mysql_elasticsearch_sync/wiki/HttpApi)),待调用后开启后台线程,通过主键分批同步指定数据库中数据到Elasticsearch
> 读取数据库会加**读锁**
> 主键必须为数字类型
#### 过程
1. 首先会根据所给的数据库主键字段,拿到最大的主键数字max_id;
2. 设*pk*=min_id(默认是数据库中的主键最小值);
2. 加读锁🔐,从数据库中取出*pk* —— *pk*+*stepSize* 大小的数据(默认500)的数据;
3. 插入到Elasticsearch中;
4. 释放读锁🔐,pk累加*stepSize*,循环3.操作,直到*pk*>*max_id*### 增量
循环监听canal通过binlog同步过来的event事件,区别增删改进行与之对应的Elasticsearch的操作。
> 目前只解析了 insert、update、delete,其它数据库操作会被忽略## 默认相关字段映射
Mysql字段类型
Elasticsearch类型
char
{"type": "text", "fields": {"keyword": {"type": "keyword", "ignore_above": 256}}
text
{"type": "text", "fields": {"keyword": {"type": "keyword", "ignore_above": 256}}
blob
{"type": "text", "fields": {"keyword": {"type": "keyword", "ignore_above": 256}}
int
{"type": "long"}
date
{"type": "date"}
time
{"type": "date"}
float
{"type": "float"}
double
{"type": "float"}
decimal
{"type": "float"}
其它
{"type": "text", "fields": {"keyword": {"type": "keyword", "ignore_above": 256}}
## 注意事项
- Mysql的binlog格式必须为**ROW**
- 因为有行锁,Mysql中table使用的存储引擎须为**InnoDB**
- 由于使用binlog进行增量同步,和数据库主从类似,不可避免的会有一定的主从延迟,延迟时间取决于机房网络、机器负载、数据量大小等
- Elasticsearch支持的版本为**5.x**
- canal已测试版为**v1.0.24**,其他版本请自行测试
- 增量同步只监听了 **INSERT、UPDATE、DELETE**,其它如建表、删表等尚未支持
- 建议Elasticsearch的mapping手动来创建,因为默认的创建方式不能保证满足业务需求## 相关文档
- [wiki](https://github.com/starcwang/canal_mysql_elasticsearch_sync/wiki)
- [HttpApi](https://github.com/starcwang/canal_mysql_elasticsearch_sync/wiki/HttpApi)
- [QuickStart](https://github.com/starcwang/canal_mysql_elasticsearch_sync/wiki/QuickStart)## 联系方式
如果有不合理的地方,还请不吝赐教。
- QQ群:733688083
**支持记得star✨**