您好,登錄后才能下訂單哦!
本篇內(nèi)容主要講解“Mysql數(shù)據(jù)怎么同步到Greenplum”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實(shí)用性強(qiáng)。下面就讓小編來帶大家學(xué)習(xí)“Mysql數(shù)據(jù)怎么同步到Greenplum”吧!
一、資源信息
這邊就不贅述
二、配置相關(guān)數(shù)據(jù)源、目標(biāo)數(shù)據(jù)源和java環(huán)境
mysql數(shù)據(jù)源
1、數(shù)據(jù)庫,create database testdb1;
2、用戶權(quán)限,需要擁有select權(quán)限和binlog拉取權(quán)限,此處使用root權(quán)限
3、同步的表(切換到syncdb1數(shù)據(jù)庫),create table tb1(a int, b char(10), primary key(a));
pgsql目的數(shù)據(jù)庫
1、用戶,create user testdb with password 'testdb';
2、數(shù)據(jù)庫,create database testdb with owner 'testdb';
3、同步的表(使用testdb用戶切換到testdb數(shù)據(jù)庫),create table tb1(a int, b char(10), primary key(a));
java環(huán)境的安裝
1、下載二進(jìn)制安裝包:jdk-8u101-linux-x64.tar.gz
2、解壓二進(jìn)制包并做軟鏈接:tar xf jdk-8u101-linux-x64.tar.gz && ln -s /data/jdk1.8.0_101 /usr/java
3、配置路徑和java環(huán)境變量: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
5、安裝jsvc,yum install jsvc
三、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
關(guān)閉,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
創(chuàng)建,bin/kafka-topics.sh --create --zookeeper localhost:2181 --replication-factor 1 --partitions 1 --topic green
查詢,bin/kafka-topics.sh --list --zookeeper localhost:2181
刪除,bin/kafka-topics.sh --delete --zookeeper localhost:2181 --topic green
7、Producer(不是本實(shí)驗(yàn)必須的,作為學(xué)習(xí)使用)
bin/kafka-console-producer.sh --broker-list localhost:9092 --topic green
>aaa
>123
>
8、Consumer(不是本實(shí)驗(yàn)必須的,作為學(xué)習(xí)使用)
bin/kafka-console-consumer.sh --bootstrap-server localhost:9092 --topic green --from-beginning
aaa
123
四、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=green
ddl_kafka_topic=green
# mysql login info
host=xx.xx.xx.xx
port=3306
user=root
password=123456
5、啟動maxwell,bin/maxwell --config config.properties
6、maxwell默認(rèn)在源數(shù)據(jù)庫生成庫maxwell記錄相關(guān)信息
五、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://xxx.xxx.xxx.xxx:5432/testdb
target.user = testdb
target.passwd = testdb
# 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 = green
# 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(表映射配置)
note:maxwell1.properties的maxwell1一定要和bireme的data_source保持一致
testdb1.tb1 = public.tb1
testdb2.tb1 = public.tb1
6、啟動bireme,bin/bireme start
六、測試
1、mysql數(shù)據(jù)源
insert into tb1 select 1,'a';
insert into tb1 select 2,'b';
2、pgsql目標(biāo)數(shù)據(jù)庫
testdb=# select * from tb1;
a | b
---+------------
1 | a
2 | b
(2 rows)
到此,相信大家對“Mysql數(shù)據(jù)怎么同步到Greenplum”有了更深的了解,不妨來實(shí)際操作一番吧!這里是億速云網(wǎng)站,更多相關(guān)內(nèi)容可以進(jìn)入相關(guān)頻道進(jìn)行查詢,關(guān)注我們,繼續(xù)學(xué)習(xí)!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。