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

Database

Showing 316

mongodump - add support for nsInclude/nsExclude

Currently mongodump supports the excludeCollection/includeCollection options but this requires the use of the --db option. It would be useful if mongodump was able to dump all databases, as it does by default, but also be able to specify a collect...
Guest 11 months ago in Database 0 Submitted

Leveraging Group By/Distinct Query to use regular Index

When using Group By or Distinct queries on database, provide the ability to leverage existing index i.e these queries today will miss using existing index db.collection.distinct("field") db.collection.aggregate([ { $group: { _id: "$category", ...
Guest 12 months ago in Querying & Aggregations 0 Submitted

Rename an existing index

Allow for the possibility of renaming an existing index, without having to drop and recreate it. Let us say a unique index exists in production, it might not be possible to safely drop it. Yet the index name might not be ideal.
Guest over 4 years ago in Data Modeling & Indexing 1 Submitted

provide faster way to perform a count() on million documents

a couple of customer a shifting from MongoDB to other DBs like Redis or even PostreSQL as count is too slow on MongoDB when there are a lot of document to count even with use of indexes
Guest almost 5 years ago in Database 2 Submitted

Extend schema validation to be able to enforce referential integrity between collections

Where a relational database uses 2 tables to store a 1:many "parent - child" relationship between entities, MongoDB mostly stores the child documents in an array file as part of the parent document. This automatically ensures referential integrity...
Guest almost 3 years ago in Data Modeling & Indexing 0 Submitted

Add a "Limit" to Delete and Bulk Delete operations

Deleting tens of millions of documents can have a big impact on the performance of the Clusters, even using Bulk Delete. A "Limit" must be added to Delete and Bulk Delete to let us limit the number of operations, making sure we do not kill the Clu...
Guest almost 6 years ago in Database 2 Submitted

Making operations that hang indefinitely more visible

Hi Team, It would be useful for some kind of timeout message to be implemented if an operation is waiting on commitQuorum - say wait an hour and then return an error message with "Can't perform operation, required number of commitQuorum members n...
Frederik Nosi over 1 year ago in Storage & Transactions 1 Submitted

Add pipeline stage for "downsampling" data

Down sampling is an extremely common operation used when plotting time-series data on graphs when there is too much data to get a good looking/meaningful graph. This would pick and choose "important" data points based on an algorithm such as "Larg...
Guest over 3 years ago in Database 1 Submitted

Support compound/multiple grouping keys in $bucket

We often need to compute statistical/summarizing aggregations grouped by more than one field where all fields are of a $bucket-able type. An example, would be to count all orders grouped by their status and some custom time ranges of their creati...
Guest about 3 years ago in Querying & Aggregations 0 Submitted

Implement $bucket and $group on indexed values with sub-linear runtime

We noticed that sum $bucket and $group aggregations such as $min, $max, $count are unexpectedly slow even when fully covered by an index, (partially) because the DB scans through the entire index rather than employing optimization approaches such ...
Guest about 3 years ago in Performance & Optimization 0 Submitted