vertx-mongo-client icon indicating copy to clipboard operation
vertx-mongo-client copied to clipboard

Mongo Client for Eclipse Vert.x

Results 39 vertx-mongo-client issues
Sort by recently updated
recently updated
newest added

``` java.lang.IllegalStateException: Unknown BsonType for '-0.0002623000' at io.vertx.ext.mongo.impl.codec.json.AbstractJsonCodec.writeValue(AbstractJsonCodec.java:83) ~[] at io.vertx.ext.mongo.impl.codec.json.AbstractJsonCodec.lambda$writeDocument$1(AbstractJsonCodec.java:261) ~[] ``` [mongotest.zip](https://github.com/vert-x3/vertx-mongo-client/files/4133643/mongotest.zip) I am trying to convert JavaObject to JsonObject and trying to persist in Mongo. I am...

Waiting on OP

When key exists dot(.), mongoclient does not throw an exception. if you can thrown an exception ,it can make me quickly spot problems.And can you add a MappingMongoConverter similar to...

Waiting on OP

We are using vertx mongo client in our application we are seeing lot of WARNINGS in our log with the following trace. ``` WARNING: Thread Thread[vert.x-eventloop-thread-1,5,main] has been blocked for...

bug
help wanted

I changed to code to this MongoClientImpl ```java private FindIterable doFind(String collection, JsonObject query, FindOptions options) { MongoCollection coll = getCollection(collection); Bson bquery = wrap(encodeKeyWhenUseObjectId(query)); FindIterable find = coll.find(bquery, JsonObject.class);...

bug
help wanted

ObjectId is not decoded in the result as hex string, although `useObjectId` flag is set to true. In version 3.5.3 (guess in earlier versions as well) Similar problem was fixed...

bug
help wanted

Hi, Is there a way to obtain the generated ids after using `rxBulkWrite` method? I thought that the information will be stored in `MongoClientBulkWriteResult#upserts` but that field is empty, every...

help wanted
question

`updateCollectionWithOptions` uses `encodeKeyWhenUseObjectId` that assumes that the _id is at the top level of the JsonObject, if an update is of the form: ``` { $set:{ _id='an-id', foo:'bar' } }...

bug
help wanted

The following code still generates an ObjectId for newly added elements, rather than the expected string id. I tried tracing the problem, but lost my way in the callback structures...

bug
help wanted

This operation is important for Auto increment Sequence generation

enhancement
help wanted