您好,我正在尝试将数据从mongodb传输到elasticsearch。我通过遵循这个tutorial做到了这一点。它适用于elasticsearch版本1.X,但当我尝试使用版本5.X时,插件无法安装。有没有人能帮我想个办法在5.X版本中做到这一点?
这是两个插件。
$ES_HOME/bin/plugin -install elasticsearch/elasticsearch-mapper-attachments/1.6.0
plugin --install com.github.richardwilly98.elasticsearch/elasticsearch-river-mongodb/2.0.9发布于 2017-10-03 00:38:30
在elastic 5.x+中,安装命令是不同的。您尝试安装的映射器附着库包含一个示例here
bin/plugin install elasticsearch/elasticsearch-mapper-attachments/3.1.2The other library does not mention support of Elastic > 2.x,它的最后一次提交远在5.x出现之前。
如果您需要使用这个库,我不相信您能够使用任何2.x以上版本
https://stackoverflow.com/questions/46529757
复制相似问题