我的搜索现在无效。我想因为我的索引没有配置副本集:
curl -XPUT 'http://localhost:9200/_river/mongodb/_meta' -d '{
"type": "mongodb",
"mongodb": {
"db": "mongo",
"host": "local",
"port": "40000",
"collection": "users"
},
"index": {
"name": "api",
"type": "users"
}
}'`
无论如何都要正确声明一个副本集,以便elasticsearch可以找到主副本,就像PHP驱动程序那样:
$m = new Mongo(
"mongodb://localhost:40000,localhost:41000",
array("replicaSet" => true)
);
以便elasticsearch可以自动故障转移给其他成员。
答案 0 :(得分:1)
我只是通过更新到最新版本的客户端驱动程序来解决这个问题。
上一个(次要)版本无法连接到最新的mongo服务器。