I have integrated ElasticSearch with mongodb using mongodb-river. All the insertions and deletions in the mongodb are getting pushed immediately in elasticsearch, however the updates are not getting synced.
This is how i coinfigured my mongodb-river.
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"
}
}'
How can I get the elasticsearch to sync with mongodb updates. Is there any configuration setting that I need to set.
The only log on elasticsearch server is :
Elasticsearch Log on update operation : [2013-01-09 13:52:13,416][INFO ][org.elasticsearch.river.mongodb.MongoDBRiver$Indexer] Indexed 0 documents, 0 insertions 1, updates, 0 deletions, 0 documents per second