Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question
what versions of ES, MongoDB and mongodb-river are you using? – Asya Kamsky Jan 9 at 2:27
ES 0.20.2, mongodb 2.2.2, mongodb-river 1.6.0. Does it have anything to do with the version ? – rahulroc Jan 9 at 5:30
you're certain new inserts get sync'ed properly? do you get any errors on updates? Do you verify the updates actually succeeded in MongoDB? Any errors in the logs? – Asya Kamsky Jan 9 at 8:12
Yes.. inserts and deletes are getting sync'ed. There are no errors on updates. Updates are successful in mongo. 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 – rahulroc Jan 9 at 8:22

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.