Skip to Main Content

MongoByte MongoDB Logo

Welcome to the new MongoDB Feedback Portal!

{Improvement: "Your idea"}
We’ve upgraded our system to better capture and act on your feedback.
Your feedback is meaningful and helps us build better products.

ADD NEW FEEDBACK

Feedback

Showing 90 of 4027

Make the Go driver interface based so that it can be easily mocked for unitTests.

Provide interfaces for driver classes that can be used to mock the database for unit tests. Along the lines of what AWS does for its services: https://aws.amazon.com/blogs/developer/mocking-out-then-aws-sdk-for-go-for-unit-testing/
Guest about 3 years ago in Drivers (ie: Node.js, Java, .NET) 0 Will Not Implement

Add support for tlsAllowInvalidCertificates

We use mongodb replicaset with encryption in-flight enabled (tls=true), but we don't require client certificates. For mongosh and c# drivers there is a parameter tlsAllowInvalidCertificates which let us DONT use any certificates including root CA ...
Guest over 1 year ago in Drivers (ie: Node.js, Java, .NET) 2 Submitted

Support TagWithCallSite and TagWith with EF Core Provider

It'd be good to support TagWithCallSite and TagWith so it's easier to figure out where the queries came from. The "tag" could be put in the query option comments so that it can be used when profiling and with otel integrations.
Guest over 1 year ago in Drivers (ie: Node.js, Java, .NET) 0 Submitted

Asynchronous variant of IIdGenerator

We have use cases where IDs assigned to documents are generated by an external service. Communication with the external service is asynchronous. We have created custom IIdGenerator implementations for this purpose, and they work, but unfortunately...
Guest over 3 years ago in Drivers (ie: Node.js, Java, .NET) 0 Submitted

Scheduled stepdown for smoother primary election

Stepdown is a great tool that allows us to keep clusters operating smoothly. We use it for example when we want to perform some maintenance work on the host where the primary is currently running, to perform a rolling upgrade, and in many other ca...
Guest almost 2 years ago in Replication & Sharding 0 Submitted

BsonIgnoreIfEmpty - Property Attribute

Like BsonIgnoreIfDefault and BsonIgnoreIfNull, we can add BsonIgnoreIfEmpty. It can be added on IEnumerables (which we basically know they cannot have infinite values since it is inserted to db after all..) and if the IEnumerable is empty, it wont...
Guest over 5 years ago in Drivers (ie: Node.js, Java, .NET) 0 Submitted

Add support for new pagination feature

Please add support for new pagination features explained here: https://www.mongodb.com/docs/atlas/atlas-search/paginate-results/
Guest almost 2 years ago in Drivers (ie: Node.js, Java, .NET) 0 Submitted

allow mongosync to migrate few field from source to destination for collection in database

right now mongosync will migrate all the fields from source to destination based on filter or non filter setting but there is no way to move few field out of all field for all document to migrate few field from source to destination for collect...
Dasharath Dixit almost 2 years ago in Replication & Sharding 0 Submitted

Use dedicated interface for replication and balancing

Like many other big database system, MongoDB may support to specify dedicated interfaces for replication and/or for the balancer (sharding) Currently you can configure replication sets and shards members only by single hostname/IP-Address, i.e. *...
Wernfried Domscheit almost 4 years ago in Replication & Sharding 0 Submitted

Better handling of circular reference serialization in Java

Given 2 generic POJOs that include references to each other such as: package com.example; public class Course { Student _student; public void setStudent(Student student) { _student = student; } public Student getStudent() { return _stu...
Guest almost 4 years ago in Drivers (ie: Node.js, Java, .NET) 0 Submitted