mongo-java-server icon indicating copy to clipboard operation
mongo-java-server copied to clipboard

Fake implementation of MongoDB in Java that speaks the wire protocol.

Results 37 mongo-java-server issues
Sort by recently updated
recently updated
newest added

Hello, [1] the latest version available on maven is `1.40.0` but from README seems like it is `1.41.0`. Do you mind publishing the latest version when you get a chance?...

The current Mongo Java API gets rid of the MongoClient class, replacing it with an interface. Calls to `new MongoClient` should be replaced with `MongoClients.create`. (See https://www.mongodb.com/docs/drivers/java/sync/current/legacy/) With the old...

When trying to save this BsonDocument: ```json { "_t": "CS_PHYSICAL", "communicationUnit": { "id": { "$binary": { "base64": "c5j1hHJNSVCVX1DmWjbrCg==", "subType": "04" } }, "protocol": "AUTOGENERATION", "type": "AUTOGENERATION", "unitIdentifier": "AUTO" }, "endDate":...

Dear all, I've tried your library to integrate an embedded mongodb into springboot application. Everything works fine until I met up with the exception: io.netty.handler.codec.DecoderException: java.io.IOException: unhandled type: 0xd After...

We have observed a bug with mongo-java-server that causes 100% CPU usage when starting multiple ChangeStreams. The fix is to introduce a small delay before returning documents from the OpLog...

#143 Includes basic support for transactions (updates and find operations to start with). Implemented on top of H2 transactions, so it is only available for the H2 Backend. Real mongo...

Revert some of the changes in #149, which are not ready to merge. Update MongoDatabaseHanlder: - log unknown / unexpected error - enhance error handling - extract and unwrap CompletionException...

Firstly, I want to thank for such a wonderful project. Unfortunately, our team gets this error on 1.36 version. Is it possible to fix this? Stacktrace: ``` 14:25:40.107 [mongo-server-worker2] ERROR...

help wanted

Does Mongo Java Server has support with [nosql-unit](https://github.com/lordofthejars/nosql-unit)? If yes, can you please share how to use it?

I have a collection that contains heterogeneous documents. Some documents are uniquely identified by the value of field `a` (and do not contain field `b`) and the others are uniquely...