无法将数据从mongodb复制到elasticsearch

时间:2014-12-20 16:11:41

标签: mongodb elasticsearch elasticsearch-mongo-river

我已在线跟踪文档,使用河流插件将数据从mongodb复制到elasticsearch。

我的Elasticseach版本是1.4.2 我的MongoDB版本是2.6.6

我已经设置了我的mongodb作为副本集运行。 我安装了以下最新的插件:

bin/plugin --install com.github.richardwilly98.elasticsearch/elasticsearch-river-mongodb/2.0.5
bin/plugin -install elasticsearch/elasticsearch-mapper-attachments/2.4.1

然后我开始使用elasticsearch并使用以下命令从mongodb数据库

创建一个新索引
curl -XPUT 'http://localhost:9200/_river/mongodb/_meta' -d '{ 
  "type": "mongodb", 
  "mongodb": { 
    "db": "MPTEST", 
    "collection": "datasets",
    "gridfs": false
  }, 
  "index": {
    "name": "mappr", 
    "type": "datasets" 
  }
}'

之后,我可以在elasticsearch控制台中看到以下日志消息:

[2014-12-20 20:49:34,785][INFO ][org.elasticsearch.river.mongodb.MongoDBRiver] MongoDB River Plugin - version[2.0.5] - hash[c11c5ae] - time[2014-12-18T12:08:22Z]
[2014-12-20 20:49:34,786][INFO ][river.mongodb.util       ] setRiverStatus called with mongodb - RUNNING
[2014-12-20 20:49:34,788][INFO ][org.elasticsearch.river.mongodb.MongoDBRiver] River mongodb startup pending
[2014-12-20 20:49:34,819][INFO ][org.elasticsearch.river.mongodb.MongoDBRiver] Starting river mongodb
[2014-12-20 20:49:34,820][INFO ][org.elasticsearch.river.mongodb.MongoDBRiver] MongoDB options: secondaryreadpreference [false], drop_collection [false], include_collection [], throttlesize [5000], gridfs [false], filter [null], db [MPTEST], collection [datasets], script [null], indexing to [mappr]/[datasets]
[2014-12-20 20:49:34,838][INFO ][cluster.metadata         ] [Mantra] [mappr] creating index, cause [api], shards [5]/[1], mappings []
[2014-12-20 20:49:34,949][INFO ][cluster.metadata         ] [Mantra] [_river] update_mapping [mongodb] (dynamic)
[2014-12-20 20:49:35,006][INFO ][river.mongodb            ] [Mantra] Creating MongoClient for [[localhost:27017]]

现在我的问题是,目前mongodb中存在的文件是否已复制到elasticsearch?如果没有,那么当我做一个mongorestore来填充mongo中的集合时,这些文件会被复制吗?如果仍然没有,那么我如何批量复制数据?或者是我错过了一些我无法复制数据的东西?

0 个答案:

没有答案