elasticsearch-river-mongodb
elasticsearch-river-mongodb copied to clipboard
River not deleting documents removed from Mongo
The river plugin is not deleting the documents that have been removed from mongo, it tracks all updates to existing documents but deleted documents seem to be sticking around when they shouldn't. Any insight into why this is?
Are u sure that River is in correct state? (check it in logs)
There is some kind of script? I have the same problem because of following code I use for filtering creation of documents
"script": "if (!ctx.document.loadingStatus || ctx.document.loadingStatus != "completed") { ctx.ignore = true; }"