gpt4 book ai didi

elasticsearch - 将索引从Elasticsearch 1.x迁移到Elasticsearch 2.x的工具

转载 作者:行者123 更新时间:2023-12-03 01:53:23 25 4
gpt4 key购买 nike

我正在寻找将数据从1.x迁移到2.x elasticsearch的工具。请建议是否有可用的东西?

最佳答案

您有几种选择。您可以使用Logstash来将索引从旧的1.x ES复制到新的2.x ES:

input {
elasticsearch {
hosts => ["old-es:9200"] <--- source ES host
index => "source_index" <--- source index to copy
docinfo => true
}
}
filter {
mutate {
remove_field => [ "@version", "@timestamp" ] <--- remove added junk
}
}
output {
elasticsearch {
hosts => ["new-es:9200]" <--- target ES host
index => "%{[@metadata][_index]}"
document_type => "%{[@metadata][_type]}"
document_id => "%{[@metadata][_id]}"
}
}

您还可以使用 elasticdump并使用以下命令将 source_indexold-es:9200复制到 new-es:9200主机:
elasticdump \
--input=http://old-es:9200/source_index \
--output=http://new-es:9200/source_index \
--type=analyzer
elasticdump \
--input=http://old-es:9200/source_index \
--output=http://new-es:9200/source_index \
--type=mapping
elasticdump \
--input=http://old-es:9200/source_index \
--output=http://new-es:9200/source_index \
--type=data

关于elasticsearch - 将索引从Elasticsearch 1.x迁移到Elasticsearch 2.x的工具,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38517663/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com