如何使用ElasticSearch,River和MongoDB创建索引?

时间:2014-12-08 16:16:03

标签: mongodb elasticsearch elasticsearch-plugin

我使用this tutorial来安装和配置MongoDB / Elasticsearch。

整个教程适用于Mac OSX Yosemite,现在我尝试在Ubuntu 14.04上做同样的事情。

这是我的ElasticSearch日志:

[2014-12-08 15:49:13,733][INFO ][cluster.service          ] [Western Kid] new_master [Western Kid][fo8GLpDoRyKYBAkjk7f-jw][my_hostname][inet[localhost/127.0.0.1:9300]], reason: zen-disco-join (elected_as_master)
[2014-12-08 15:49:13,758][INFO ][http                     ] [Western Kid] bound_address {inet[/127.0.0.1:9200]}, publish_address {inet[localhost/127.0.0.1:9200]}
[2014-12-08 15:49:13,758][INFO ][node                     ] [Western Kid] started
[2014-12-08 15:49:14,449][INFO ][gateway                  ] [Western Kid] recovered [1] indices into cluster_state
[2014-12-08 15:49:15,225][INFO ][org.elasticsearch.river.mongodb.MongoDBRiver] Starting river mongodb
[2014-12-08 15:49:15,230][INFO ][org.elasticsearch.river.mongodb.MongoDBRiver] MongoDB River Plugin - version[2.0.4] - hash[7472875] - time[2014-11-11T13:26:19Z]
[2014-12-08 15:49:15,231][INFO ][org.elasticsearch.river.mongodb.MongoDBRiver] starting mongodb stream. options: secondaryreadpreference [false], drop_collection [false], include_collection [], throttlesize [5000], gridfs [false], filter [null], db [my_db_name], collection [my_collection], script [null], indexing to [my_index]/[my_type]
[2014-12-08 15:49:15,231][INFO ][river.mongodb.util       ] setRiverStatus called with mongodb - RUNNING
[2014-12-08 15:57:56,543][INFO ][cluster.metadata         ] [Western Kid] [_river] update_mapping [my_db_name] (dynamic)

当我尝试开始索引我的收藏时,我收到以下消息:

{
  "_index": "_river",
  "_type": "my_type",
  "_id": "_meta",
  "_version": 4,
  "created": false
}

每次尝试以1开始时版本都在增加。

我猜, 已创建:false 表示由于某种原因无法创建索引,但我不知道原因。

1 个答案:

答案 0 :(得分:0)

河流的版本正在增加,因为您实际上正在更新_river索引,因此Elasticsearch不会创建它,因为它已经存在。

您可能希望安装elasticsearch-head插件以更好地可视化您的群集,因为您似乎并不熟悉API。

尝试删除_river并再次创建它,您将看到它实际上已创建状态。