embulk-input-mongodb icon indicating copy to clipboard operation
embulk-input-mongodb copied to clipboard

MongoDB input plugin for Embulk loads records from MongoDB.

Results 6 embulk-input-mongodb issues
Sort by recently updated
recently updated
newest added

This will possibly fix the issue https://github.com/embulk/embulk-input-mongodb/issues/71.

Hello, We exported our database of MongoDB 4.4 with this plugin and got invalid data. It seems all columns are exported as string `"1"`. I found the driver version is...

Hello, I've been trying to use this source without success for UUID fields. Managed to make it work by trying to decode binary as UUID before decoding as actually binary:...

The current implementation only allows you to specify a single Mongo pipeline stage, e.g. ```yaml in: type: mongodb aggregation: > { $match: { int32_field: { $gte: 5 }} } ```...

Error occurs with using the incremental_field option along with query. ``` org.embulk.exec.PartialExecutionException: org.embulk.config.ConfigException: Could not generate new query for incremental load. at org.embulk.exec.BulkLoader$LoaderState.buildPartialExecuteException(BulkLoader.java:340) at org.embulk.exec.BulkLoader.doRun(BulkLoader.java:566) at org.embulk.exec.BulkLoader.access$000(BulkLoader.java:35) at org.embulk.exec.BulkLoader$1.run(BulkLoader.java:353) at...