elasticsearch-river-mongodb icon indicating copy to clipboard operation
elasticsearch-river-mongodb copied to clipboard

MongoDB River Plugin for ElasticSearch

Results 100 elasticsearch-river-mongodb issues
Sort by recently updated
recently updated
newest added

Is it possible to flatten or resolve references to other collections before indexing to Elasticsearch? Example I have this schema: ``` var PartSchema = new mongoose.Schema({ title: { type: String,...

Hi, I update the river to 2.0.1 but DBRef still handle as string :( Here my MongoDb collection ``` "users": [ { "$ref": "users", "$id": ObjectId("5437cbad03643f072c41f6b0") } ] ``` Here...

expand and nest dbrefs instead of mapping them as just the id and type The following (where category is a dbref) ``` { "_id" : "51a220fdb573df1144000000", "_source":{ "body":"the body", "category":{"ref":"category","id":"5194272cfdea65e5d6000021"}...

Hi, I would like to suggest a modification to the main wiki page, because current information may lead to confusions. You wrote how to delete a document, or how to...

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...

How long does it take for the river plugin to update elasticsearch with data that has changed on mongo?

We are using the newest C# driver to put our data into mongo. The models derive from a base class that marks them with an id of type GUID. The...

Trying to create a river and no documents are getting synced. From my elasticsearch host I type: curl -XPUT localhost:9200/_river/toku/_meta -d '{ "type": "mongodb", "mongodb": { "servers": [ { "host":...

On occasion we have rivers fail and would like to resume indexing quickly. I'd like to be able to restart the river where the the oplog currently is and manually...

We found the last timestamp value is keyed by namespace(db.collection), however for mongo, one collection can be stored in multiple shards. In this situation, last timestamp may from shard A,...