我正在使用elasticsearch和mongodb。安装河周前。今天在搜索记录时,只需检查弹性搜索索引是否没有得到更新或修改,因为每天都会添加mongodb中的记录。
我正在使用以下行创建河
curl -XPUT "localhost:9200/_river/myindex/_meta" -d '
{
"type": "mongodb",
"mongodb": {
"host": "localhost",
"port": "27017",
"db": "qna",
"collection": "collection"
},
"index": {
"name": "myindex",
"type": "index_type"
}
}'