bireme數據源同步工具
Bireme 是一個 Greenplum / HashData 數據倉庫的增量同步工具。目前支持 MySQL、PostgreSQL 和 MongoDB 數據源
官方介紹文檔:https://github.com/HashDataInc/bireme/blob/master/README_zh-cn.md
1、數據流
Bireme 采用 DELETE + COPY 的方式,將數據源的修改記錄同步到 Greenplum / HashData ,相較於INSERT + UPDATE + DELETE的方式,COPY 方式速度更快,性能更優
2、數據源
2.1、Maxwell + Kafka 是 bireme 目前支持的一種數據源類型,架構如下圖:
Maxwell 是一個 MySQL binlog 的讀取工具,它可以實時讀取 MySQL 的 binlog,並生成 JSON 格式的消息,作為生產者發送給 Kafka
?
2.2、Debeziuk + Kafka 是 bireme 支持的另外一種數據源類型,架構如下圖:
Debezium 是一個CDC工具,可以將數據庫的增刪改轉換為事件流,並把這些修改發送給 Kafka
3、工作原理
Bireme 從數據源讀取數據 (Record),將其轉化為內部格式 (Row) 並緩存,當緩存數據達到一定量,將這些數據合並為一個任務 (Task),每個任務包含兩個集合,delete 集合與insert 集合,最後把這些數據更新到目標數據庫。
4、本文搭建實例圖形
?
?
2、配置相關數據源、目標數據源和java環境
1、mysql數據源
1、數據庫,create database syncdb1; 2、用戶權限,需要擁有select權限和binlog拉取權限,此處使用root權限 3、同步的表(切換到syncdb1數據庫),create table tb1(a int, b char(10), primary key(a));
2、pgsql目的數據庫
1、用戶,create user syncdb with password ‘syncdb‘;
2、數據庫,create database syncdb with owner ‘syncdb‘;
3、同步的表(使用syncdb用戶切換到syncdb數據庫),create table tb1(a int, b char(10), primary key(a));
3、java環境的安裝
1、下載二進制安裝包:jdk-8u101-linux-x64.tar.gz
2、解壓二進制包並做軟鏈接:tar xf jdk-8u101-linux-x64.tar.gz && ln -s /data/jdk1.8.0_101 /usr/java
3、配置路徑和java環境變量:vim /etc/profile.d/java.sh
export JAVA_HOME=/usr/java
export JRE_HOME=$JAVA_HOME/jre
export PATH=$JAVA_HOME/bin:$PATH
export CLASSPATH=.:$JAVA_HOME/lib:$JAVA_HOME/jre/lib
4、source生效:source /etc/profile.d/java.sh
?
?
?
3、kafka的安裝和啟動配置
1、下載地址:https://mirrors.tuna.tsinghua.edu.cn/apache/kafka/
2、kafka官方文檔:http://kafka.apache.org/
3、解壓縮:tar xf kafka_2.11-2.0.0.tgz && cd kafka_2.11-2.0.0
4、ZooKeeper
啟動,bin/zookeeper-server-start.sh config/zookeeper.properties
關閉,bin/zookeeper-server-stop.sh config/zookeeper.properties
5、Kafka server
啟動,bin/kafka-server-start.sh config/server.properties
啟動,bin/kafka-server-stop.sh config/server.properties
6、Topic
創建,bin/kafka-topics.sh --create --zookeeper localhost:2181 --replication-factor 1 --partitions 1 --topic world
查詢,bin/kafka-topics.sh --list --zookeeper localhost:2181
刪除,bin/kafka-topics.sh --delete --zookeeper localhost:2181 --topic world
7、Producer(不是本實驗必須的,作為學習使用)
bin/kafka-console-producer.sh --broker-list localhost:9092 --topic test
>hello
>jiaming
>
8、Consumer(不是本實驗必須的,作為學習使用)
bin/kafka-console-consumer.sh --bootstrap-server localhost:9092 --topic test --from-beginning
hello
jiaming
?
?
?
4、maxwell的安裝和啟動配置
1、下載地址:https://github.com/zendesk/maxwell/releases
2、maxwell官方文檔:https://github.com/zendesk/maxwell
3、解壓縮:tar xf maxwell-1.17.1.tar.gz && cd maxwell-1.17.1
4、修改配置文件,cp config.properties.example config.properties && vim config.properties
log_level=info
# kafka info
producer=kafka
kafka.bootstrap.servers=localhost:9092
kafka_topic=world
ddl_kafka_topic=world
# mysql login info
host=118.190.209.102
port=5700
user=root
password=123456
5、啟動maxwell,bin/maxwell --config config.properties
6、maxwell默認在源數據庫生成庫maxwell記錄相關信息
?
?
?
5、bireme的安裝和啟動配置
1、下載地址:https://github.com/HashDataInc/bireme/releases
2、bireme官方文檔:https://github.com/HashDataInc/bireme/blob/master/README_zh-cn.md
3、解壓縮:tar xf bireme-1.0.0.tar.gz && cd bireme-1.0.0
4、修改配置文件,vim etc/config.properties
# target database where the data will sync into.
target.url = jdbc:postgresql://118.190.209.102:5432/syncdb
target.user = syncdb
target.passwd = syncdb
# data source name list, separated by comma.
data_source = maxwell1
# data source "mysql1" type
maxwell1.type = maxwell
# kafka server which maxwell write binlog into.
maxwell1.kafka.server = 127.0.0.1:9092
# kafka topic which maxwell write binlog into.
maxwell1.kafka.topic = world
# kafka groupid used for consumer.
maxwell1.kafka.groupid = bireme
# set the IP address for bireme state server.
state.server.addr = 0.0.0.0
# set the port for bireme state server.
state.server.port = 8080
5、修改配置文件,vim etc/maxwell1.properties(表映射配置)
syncdb1.tb1 = public.tb1
syncdb2.tb1 = public.tb1
6、啟動bireme,bin/bireme start
7、監控,http://192.168.1.129:8080/pretty (state.server.addr:state.server.port)
?
?
?
6、測試
1、mysql數據源
insert into tb1 select 1,‘a‘;
insert into tb1 select 2,‘b‘;
2、pgsql目標數據庫
syncdb=# select * from tb1;
a | b
---+------------
1 | a
2 | b
(2 rows)
bireme數據源同步工具