人妖在线一区,国产日韩欧美一区二区综合在线,国产啪精品视频网站免费,欧美内射深插日本少妇

新聞動(dòng)態(tài)

詳解Mysql如何實(shí)現(xiàn)數(shù)據(jù)同步到Elasticsearch

發(fā)布日期:2021-12-07 15:02 | 文章來源:源碼之家

一、同步原理

基于Mysql的binlog日志訂閱:binlog日志是Mysql用來記錄數(shù)據(jù)實(shí)時(shí)的變化

Mysql數(shù)據(jù)同步到ES中分為兩種,分別是全量同步和增量同步

全量同步表示第一次建立好ES索引之后,將Mysql中所有數(shù)據(jù)一次性導(dǎo)入到ES中

增量同步表示Mysql中產(chǎn)生新的數(shù)據(jù),這些新的數(shù)據(jù)包括三種情況,就是新插入Mysql中的數(shù)據(jù),更新老的數(shù)據(jù),刪除的數(shù)據(jù),這些數(shù)據(jù)的變動(dòng)與新增都要同步到ES中

二、logstash-input-jdbc

logstash官方插件,集成在logstash中,下載logstash即可,通過配置文件實(shí)現(xiàn)mysql與elasticsearch數(shù)據(jù)同步

優(yōu)點(diǎn)

  • 能實(shí)現(xiàn)mysql數(shù)據(jù)全量和增量的數(shù)據(jù)同步,且能實(shí)現(xiàn)定時(shí)同步
  • 版本更新迭代快,相對穩(wěn)定
  • 作為ES固有插件logstash一部分,易用

缺點(diǎn)

  • 不能實(shí)現(xiàn)同步刪除操作,MySQL數(shù)據(jù)刪除后Elasticsearch中數(shù)據(jù)仍存在
  • 同步最短時(shí)間差為一分鐘,一分鐘數(shù)據(jù)同步一次,無法做到實(shí)時(shí)同步

三、go-mysql-elasticsearch

go-mysql-elasticsearch 是國內(nèi)作者開發(fā)的一款插件

優(yōu)點(diǎn)

  • 能實(shí)現(xiàn)mysql數(shù)據(jù)全量和增量的數(shù)據(jù)同步

缺點(diǎn)

  • 無法實(shí)現(xiàn)數(shù)據(jù)全量同步Elasticsearch
  • 仍處理開發(fā)、相對不穩(wěn)定階段

四、elasticsearch-jdbc

elasticsearch-jdbc 目前最新的版本是2.3.4,支持的ElasticSearch的版本為2.3.4, 未實(shí)踐

優(yōu)點(diǎn)

  • 能實(shí)現(xiàn)mysql數(shù)據(jù)全量和增量的數(shù)據(jù)同步

缺點(diǎn)

  • 目前最新的版本是2.3.4,支持的ElasticSearch的版本為2.3.4
  • 不能實(shí)現(xiàn)同步刪除操作,MySQL數(shù)據(jù)刪除后Elasticsearch中數(shù)據(jù)仍存在

五、logstash-input-jdbc實(shí)現(xiàn)同步

第一步安裝:

logstash5.x之后,集成了logstash-input-jdbc插件。安裝logstash后通過命令安裝logstash-input-jdbc插件

cd /logstash-6.4.2/bin
./logstash-plugin install logstash-input-jdbc

第二步配置:

在logstash-6.4.2/config文件夾下新建jdbc.conf,配置如下

在logstash-6.4.2/config 目錄下新建jdbc.sql文件

select * from t_employee

第三步運(yùn)行

cd logstash-6.4.2
# 檢查配置文件語法是否正確
bin/logstash -f config/jdbc.conf --config.test_and_exit
# 啟動(dòng)
bin/logstash -f config/jdbc.conf --config.reload.automatic

--config.reload.automatic:會(huì)自動(dòng)重新加載配置文件內(nèi)容

在kibana中創(chuàng)建索引后查看同步數(shù)據(jù)

PUT octopus
GET octopus/_search

六、go-mysql-elasticsearch實(shí)現(xiàn)同步

第一步:mysql binlog日志

go-mysql-elasticsearch通過mysql中binlog日志實(shí)現(xiàn)數(shù)據(jù)增加,刪除,修改同步elasticsearch

mysql的binlog日志主要用于數(shù)據(jù)庫的主從復(fù)制與數(shù)據(jù)恢復(fù)。binlog中記錄了數(shù)據(jù)的增刪改查操作,主從復(fù)制過程中,主庫向從庫同步binlog日志,從庫對binlog日志中的事件進(jìn)行重放,從而實(shí)現(xiàn)主從同步。

mysql binlog日志有三種模式,分別為:

ROW:   記錄每一行數(shù)據(jù)被修改的情況,但是日志量太大
STATEMENT:   記錄每一條修改數(shù)據(jù)的SQL語句,減少了日志量,但是SQL語句使用函數(shù)或觸發(fā)器時(shí)容易出現(xiàn)主從不一致
MIXED:   結(jié)合了ROW和STATEMENT的優(yōu)點(diǎn),根據(jù)具體執(zhí)行數(shù)據(jù)操作的SQL語句選擇使用ROW或者STATEMENT記錄日志

要通過mysql binlog將數(shù)據(jù)同步到ES集群,只能使用ROW模式,因?yàn)橹挥蠷OW模式才能知道m(xù)ysql中的數(shù)據(jù)的修改內(nèi)容。

以UPDATE操作為例,ROW模式的binlog日志內(nèi)容示例如下:

SET TIMESTAMP=1527917394/*!*/;
    BEGIN
    /*!*/;
    # at 3751
    #180602 13:29:54 server id 1  end_log_pos 3819 CRC32 0x8dabdf01     Table_map: `webservice`.`building` mapped to number 74
    # at 3819
    #180602 13:29:54 server id 1  end_log_pos 3949 CRC32 0x59a8ed85     Update_rows: table id 74 flags: STMT_END_F
    
    BINLOG '
    UisSWxMBAAAARAAAAOsOAAAAAEoAAAAAAAEACndlYnNlcnZpY2UACGJ1aWxkaW5nAAYIDwEPEREG
    wACAAQAAAAHfq40=
    UisSWx8BAAAAggAAAG0PAAAAAEoAAAAAAAEAAgAG///A1gcAAAAAAAALYnVpbGRpbmctMTAADwB3
    UkRNbjNLYlV5d1k3ajVbD64WWw+uFsDWBwAAAAAAAAtidWlsZGluZy0xMAEPAHdSRE1uM0tiVXl3
    WTdqNVsPrhZbD64Whe2oWQ==
    '/*!*/;
    ### UPDATE `webservice`.`building`
    ### WHERE
    ###   @1=2006 /* LONGINT meta=0 nullable=0 is_null=0 */
    ###   @2='building-10' /* VARSTRING(192) meta=192 nullable=0 is_null=0 */
    ###   @3=0 /* TINYINT meta=0 nullable=0 is_null=0 */
    ###   @4='wRDMn3KbUywY7j5' /* VARSTRING(384) meta=384 nullable=0 is_null=0 */
    ###   @5=1527754262 /* TIMESTAMP(0) meta=0 nullable=0 is_null=0 */
    ###   @6=1527754262 /* TIMESTAMP(0) meta=0 nullable=0 is_null=0 */
    ### SET
    ###   @1=2006 /* LONGINT meta=0 nullable=0 is_null=0 */
    ###   @2='building-10' /* VARSTRING(192) meta=192 nullable=0 is_null=0 */
    ###   @3=1 /* TINYINT meta=0 nullable=0 is_null=0 */
    ###   @4='wRDMn3KbUywY7j5' /* VARSTRING(384) meta=384 nullable=0 is_null=0 */
    ###   @5=1527754262 /* TIMESTAMP(0) meta=0 nullable=0 is_null=0 */
    ###   @6=1527754262 /* TIMESTAMP(0) meta=0 nullable=0 is_null=0 */
    # at 3949
    #180602 13:29:54 server id 1  end_log_pos 3980 CRC32 0x58226b8f     Xid = 182
    COMMIT/*!*/;

STATEMENT模式下binlog日志內(nèi)容示例為:

SET TIMESTAMP=1527919329/*!*/;
    update building set Status=1 where Id=2000
    /*!*/;
    # at 688
    #180602 14:02:09 server id 1  end_log_pos 719 CRC32 0x4c550a7d  Xid = 200
    COMMIT/*!*/;

從ROW模式和STATEMENT模式下UPDATE操作的日志內(nèi)容可以看出,ROW模式完整地記錄了要修改的某行數(shù)據(jù)更新前的所有字段的值以及更改后所有字段的值,而STATEMENT模式只單單記錄了UPDATE操作的SQL語句。我們要將mysql的數(shù)據(jù)實(shí)時(shí)同步到ES, 只能選擇ROW模式的binlog, 獲取并解析binlog日志的數(shù)據(jù)內(nèi)容,執(zhí)行ES document api,將數(shù)據(jù)同步到ES集群中。

查看,修改binlog模式

# 查看binlog模式
mysql> show variables like "%binlog_format%";
 
# 修改binlog模式
mysql> set global binlog_format='ROW';
 
# 查看binlog是否開啟
mysql> show variables like 'log_bin';
 
# 開啟bīnlog
修改my.cnf文件log-bin = mysql-bin

第二步安裝

# 安裝go
sudo apt-get install go
 
# 安裝godep
go get github.com/tools/godep
 
# 獲取go-mysql-elasticsearch插件
go get github.com/siddontang/go-mysql-elasticsearch
 
# 安裝go-mysql-elasticsearch插件
cd go/src/github.com/siddontang/go-mysql-elasticsearch
make

第三步配置

go/src/github.com/siddontang/go-mysql-elasticsearch/etc/river.toml

# MySQL address, user and password
# user must have replication privilege in MySQL.
my_addr = "127.0.0.1:3306"     # 需要同步的mysql基本設(shè)置
my_user = "root"
my_pass = "root"
 
# Elasticsearch address
es_addr = "127.0.0.1:9200"     # 本地elasticsearch配置
 
# Path to store data, like master.info, and dump MySQL data 
data_dir = "./var"             # 數(shù)據(jù)存儲(chǔ)的url
# 以下配置保存默認(rèn)不變
# Inner Http status address
stat_addr = "127.0.0.1:12800"
 
# pseudo server id like a slave 
server_id = 1001
 
# mysql or mariadb
flavor = "mysql"
# mysqldump execution path
mysqldump = "mysqldump"
 
# MySQL data source
[[source]]
schema = "test"             //elasticsearch 與 mysql 同步時(shí)對應(yīng)的數(shù)據(jù)庫名稱
 
# Only below tables will be synced into Elasticsearch.
# 要同步test這個(gè)database里面的幾張表。對于一些項(xiàng)目如果使用了分表機(jī)制,我們可以用通配符來匹配,譬如t_[0-9]{4},就可# 以匹配 table  t_0000 到 t_9999。
tables = ["t", "t_[0-9]{4}", "tfield", "tfilter"]  
 
# Below is for special rule mapping
# 對一個(gè) table,我們需要指定將它的數(shù)據(jù)同步到 ES 的哪一個(gè) index 的 type 里面。如果不指定,我們默認(rèn)會(huì)用起 schema  # name 作為 ES 的 index 和 type
[[rule]]
schema = "test"    //數(shù)據(jù)庫名稱
table = "t"        //表名稱
index = "test"        //對應(yīng)的索引名稱
type = "t"            //對應(yīng)的類型名稱
 
# 將所有滿足格式 t_[0-9]{4} 的 table 同步到 ES 的 index 為 test,type 為 t 的下面。當(dāng)然,這些表需要保證
# schema 是一致的
[[rule]]
schema = "test"
table = "t_[0-9]{4}"
index = "test"
type = "t"
 
# 對于 table tfilter,我們只會(huì)同步 id 和 name 這兩列,其他的都不會(huì)同步
filter = ["id", "name"]
# table tfield 的 column id ,我們映射成了 es_id,而 tags 則映射成了 es_tags
# list 這個(gè)字段,他顯示的告知需要將對應(yīng)的 column 數(shù)據(jù)轉(zhuǎn)成 ES 的 array type。這個(gè)現(xiàn)在通常用于 MySQL 的 varchar # 等類型,我們可能會(huì)存放類似 “a,b,c” 這樣的數(shù)據(jù),然后希望同步給 ES 的時(shí)候變成 [a, b, c] 這樣的列表形式。
 
[rule.field]
# Map column `id` to ES field `es_id`
id="es_id"
# Map column `tags` to ES field `es_tags` with array type 
tags="es_tags,list"
# Map column `keywords` to ES with array type
keywords=",list"

第四步運(yùn)行?

cd go/src/github.com/siddontang/go-mysql-elasticsearch
bin/go-mysql-elasticsearch -config=./etc/river.toml

七、elasticsearch-jdbc實(shí)現(xiàn)同步

下載工具

解壓:unzip elasticsearch-jdbc-2.3.2.0-dist.zip

設(shè)置環(huán)境變量

[root@autofelix /]# vi /etc/profile
export JDBC_IMPORTER_HOME=/elasticsearch-jdbc-2.3.2.0

使環(huán)境變量生效

[root@autofelix /]# source /etc/profile

配置參考

第一步:在根目錄下建立根目錄下新建文件夾odbc_es 如下

[root@autofelix /]# ll /odbc_es/
drwxr-xr-x 2 root root 4096 Jun 16 03:11 logs
-rwxrwxrwx 1 root root 542 Jun 16 04:03 mysql_import_es.sh

第二步:新建腳本mysql_import_es.sh,內(nèi)容如下

[root@autofelix odbc_es]# cat mysql_import_es.sh
'#!/bin/sh
bin=$JDBC_IMPORTER_HOME/bin
lib=$JDBC_IMPORTER_HOME/lib
echo '{
"type" : "jdbc",
"jdbc": {
"elasticsearch.autodiscover":true,
"elasticsearch.cluster":"my-application", #簇名,詳見:/usr/local/elasticsearch/config/elasticsearch.yml
"url":"jdbc:mysql://10.8.5.101:3306/test", #mysql數(shù)據(jù)庫地址
"user":"root", #mysql用戶名
"password":"123456", #mysql密碼
"sql":"select * from cc",
"elasticsearch" : {
  "host" : "10.8.5.101",
  "port" : 9300
},
"index" : "myindex", #新的index
"type" : "mytype" #新的type
}
}'| java \
  -cp "${lib}/*" \
  -Dlog4j.configurationFile=${bin}/log4j2.xml \
  org.xbib.tools.Runner \
  org.xbib.tools.JDBCImporter

第三步:為 mysql_import_es.sh 添加可執(zhí)行權(quán)限。

[root@autofelix odbc_es]# chmod a+x mysql_import_es.sh

第四步:執(zhí)行腳本mysql_import_es.sh

[root@autofelix odbc_es]# ./mysql_import_es.sh

到此這篇關(guān)于詳解Mysql如何實(shí)現(xiàn)數(shù)據(jù)同步到Elasticsearch的文章就介紹到這了,更多相關(guān)Mysq數(shù)據(jù)同步到Elasticsearch內(nèi)容請搜索本站以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持本站!

版權(quán)聲明:本站文章來源標(biāo)注為YINGSOO的內(nèi)容版權(quán)均為本站所有,歡迎引用、轉(zhuǎn)載,請保持原文完整并注明來源及原文鏈接。禁止復(fù)制或仿造本網(wǎng)站,禁止在非www.sddonglingsh.com所屬的服務(wù)器上建立鏡像,否則將依法追究法律責(zé)任。本站部分內(nèi)容來源于網(wǎng)友推薦、互聯(lián)網(wǎng)收集整理而來,僅供學(xué)習(xí)參考,不代表本站立場,如有內(nèi)容涉嫌侵權(quán),請聯(lián)系alex-e#qq.com處理。

實(shí)時(shí)開通

自選配置、實(shí)時(shí)開通

免備案

全球線路精選!

全天候客戶服務(wù)

7x24全年不間斷在線

專屬顧問服務(wù)

1對1客戶咨詢顧問

在線
客服

在線客服:7*24小時(shí)在線

客服
熱線

400-630-3752
7*24小時(shí)客服服務(wù)熱線

關(guān)注
微信

關(guān)注官方微信
頂部