mongo-connector
mongo-connector copied to clipboard
MongoDB data stream pipeline tools by YouGov (adopted from MongoDB)
throw error when attempting to $unset a field that don't exist #759
Fixes #390 Added a new flag ```--is_oplog_proxy``` which tells the mongo connector to access oplog via the URI passed in. mongo_connector does not connect to individual shards directly to access...
findAndModify requires shard key, for update oplog with _id as the the query key and without shard key, findAndModify will fail. Also the main difference between findAndModify & update is...
Format UUID was set the same for DBRef, UUID into_id and UUID into document. Now there are two different approachs how the mongo-connector handles UUID. The first approach looks like...
This is my proposal for issue #728. Basically it gives us the ability to use an async or buffering doc manager (such as kafka) and ensure that writes are sent...
Issue #724 Replacing del with pop() to allow deletion of keys which do not exist
… "bson.dbref.DBRef" is used by Solr DBRef.
In the case where a replicaset doesn't have any docs matching the target namespaces (which happens with tag aware sharding), we don't want to keep generating (empty) oplog cursors on...
I connect mongodb(v3.4.0) and elasitsearch(v5.1.1) by mongo-connector. And I use 5 replicaSet(primary:10000, secondary:10001,10002,10003,10004). when I start mongo-connector, my code is like below. > mongo-connector -m localhost:10000 -t localhost:9200 -d elastic2_doc_manager...