前言:新機器上新建集群+logstash遷移原es集群資料到目標機器。
安裝logstash,新建遷移配置檔案
# 檢視安裝進度
[lsy@test ~
]$ tail -f wget-log
# 解壓安裝包
[lsy@test ~
]$ tar -zxvf logstash-
5.6.1
# 重新命名
[lsy@test ~
]$ mv logstash-
5.6.1 logstash
[lsy@test ~
]$ cd logstash
# 新建並編輯logstash輸入輸出檔案
[lsy@test logstash]$ vim es.conf
/*input
}# 過濾資訊(可不寫)
filter
}output "
document_type => "%"
index => "%"}}
*/# 啟動es.conf配置檔案
[lsy@test logstash]$ .
/bin/logstash -f es.conf (& 後台啟動)
logstash資料遷移
logstash是乙個非常強大的資料遷移工具。這裡主要記錄今天使用到的幾個簡單用法。首先配置 conf檔案。1 elasticsearch遷移到elasticsearch input filter output 2 es儲存到file input filter output 儲存json檔案中資料像...
es資料跨集群遷移(HDSF方法)
es 備份儲存方式支援以下幾種方式 fs 檔案掛載 url 網路協議儲存 http,https,ftp s3 亞馬遜 hdfs azure 微軟 gcs 谷歌 本篇文章採用hdfs方式儲存 1.repository 倉庫 es集群中,想要備份資料,必須建立倉庫,用來儲存快照,乙個集群可以建立多個倉庫...
Logstash 建立 es 索引
官方介紹 logstash is an open source data collection engine with real time pipelining capabilities。簡單來說logstash就是一根具備實時資料傳輸能力的管道,負責將資料資訊從管道的輸入端傳輸到管道的輸出端 與此...