一尘不染

将数据从Solr迁移到elasticsearch

elasticsearch

将Solr核心迁移到elasticsearch索引的最佳方法是什么?

不推荐使用solr-river-plugin(https://github.com/javanna/elasticsearch-river-
solr)。


阅读 1123

收藏
2020-06-22

共1个答案

一尘不染

OpenSource Connections中有一个不错的,由爱心人士精心制作的自定义Python工具,您可以用来执行以下操作:

https://github.com/o19s/solr-to-es

只是

./solr-to-es solr_url elasticsearch_url elasticsearch_index doc_type

例如,下面的命令将分页浏览名为的本地Solr节点上的所有文档node,并将它们以my_index文档类型的索引提交给本地Elasticsearch服务器my_type

./solr-to-es.py localhost:8983/solr/node localhost:9200 my_index my_type
2020-06-22