MongoDB is a scalable, high-performance, open source, document-oriented database. It supports a large number of languages and application development platforms.
262
votes
8answers
63k views
When to use MongoDB or other document oriented database systems?
We offer a platform for video- and audio-clips, photos and vector-grafics. We started with MySQL as the database backend and recently included MongoDB for storing all meta-information of the files, ...
40
votes
3answers
25k views
MongoDB and “joins”
I'm sure MongoDB doesn't officially support "joins". What does this mean?
Does this mean "We cannot connect two collections(tables) together."?
I think if we put the value for _id in collection A to ...
156
votes
6answers
69k views
MongoDB vs. Cassandra [closed]
I am evaluating what might be the best migration option.
Currently, I am on a sharded MySQL (horizontal partition), with most of my data stored in JSON blobs. I do not have any complex SQL queries ...
63
votes
8answers
14k views
Random record from MongoDB
I am looking to get a random record from a huge (100 million record) mongodb. What is the fastest and most efficient way to do so? The data is already there and there are no field in which I can ...
101
votes
5answers
42k views
How to query mongodb with “like”?
I'm using mongodb 1.4.
I want query something as SQL's like.
For an example in SQL:
select * from users where name like '%m%'
How to do the same in mongodb? I can't find a operator for like in ...
17
votes
4answers
9k views
MongoDB extract only the selected item in array
Suppose you have the following:
// Document 1
{ "shapes" : [
{"shape" : "square", "color" : "blue"},
{"shape" : "circle","color" : "red"}
]
}
// Document 2
{ "shapes" : [
{"shape" : ...
68
votes
4answers
13k views
Ways to implement data versioning in MongoDB
Can you share your thoughts how would you implement data versioning in MongoDB. (I've asked similar question regarding Cassandra. If you have any thoughts which db is better for that please share)
...
18
votes
3answers
4k views
MongoDB: Updating documents using data from the same document
I have a list of documents, each with lat and lon properties (among others).
{ 'lat': 1, 'lon': 2, someotherdata [...] }
{ 'lat': 4, 'lon': 1, someotherdata [...] }
[...]
I want to modify it so ...
65
votes
6answers
8k views
Use cases for NoSQL
NoSQL has been getting a lot of attention in our industry recently. I'm really interested in what peoples thoughts are on the best use-cases for its use over relational database storage. What should ...
14
votes
3answers
2k views
How should I implement this schema in MongoDB?
I'm trying to write a tracking script and I'm having trouble with figuring out how the database should work.
In MySQL I'd create a table that looks similar to
User:
username_name: string
...
31
votes
2answers
9k views
MongoDB GridFs with C#, how to store files such as images?
I'm developing a web app with mongodb as my back-end. I'd like to have users upload pictures to their profiles like a linked-in profile pic. I'm using an aspx page with MVC2 and I read that GridFs ...
40
votes
6answers
17k views
MongoDB: Is it possible to make a case-insensitive query?
Example:
> db.stuff.save({"foo":"bar"});
> db.stuff.find({"foo":"bar"}).count();
1
> db.stuff.find({"foo":"BAR"}).count();
0
51
votes
2answers
7k views
A simple mongodb question: embed? or reference?
I'm new to mongodb from a relation-database background. I want design a question structure with some comments, but I don't know what I should do: embed? or reference?
A question with some comments, ...
51
votes
2answers
12k views
MongoDB Get names of all keys in collection
I'd like to get the names of all the keys in a MongoDB collection.
For example, from this:
db.things.insert( { type : ['dog', 'cat'] } );
db.things.insert( { egg : ['cat'] } );
db.things.insert( { ...
13
votes
1answer
5k views
Filtering embedded documents in MongoDB
I am having trouble grasping how to filter embedded documents in MongoDB, and am starting to think I should be using a relational association, but that feels wrong in the document-store context.
...
95
votes
6answers
16k views
NoSQL (MongoDB) vs Lucene (or Solr) as your database
With the NoSQL movement growing based on document-based databases, I've looked at MongoDB lately. I have noticed a striking similarity with how to treat items as "Documents", just like Lucene does ...
29
votes
4answers
13k views
Is GridFS fast and reliable enough for production?
I develop a new website and I want to use GridFS as storage for all user uploads, because it offers a lot of advantages compared to a normal filesystem storage.
Benchmarks with GridFS served by nginx ...
44
votes
3answers
19k views
Understanding MongoDB BSON Document size limit
From MongoDB The Definitive Guide:
Documents larger than 4MB (when converted to BSON) cannot be
saved to the database. This is a somewhat arbitrary limit (and may be
raised in the future); it ...
56
votes
6answers
30k views
How do I perform the SQL Join equivalent in MongoDB?
How do I perform the SQL Join equivalent in MongoDB?
For example say you have two collections (users and comments) and I want to pull all the comments with pid=444 along with the user info for each.
...
12
votes
3answers
3k views
Can I query MongoDB ObjectId by date?
I know that ObjectIds contain the date they were created. Is there a way to query this aspect of the ObjectId?
Thanks.
17
votes
3answers
9k views
MongoDB's performance on aggregation queries
After hearing so many good things about MongoDB's performance we decided to give Mongodb a try to solve a problem we have. I started by moving all the records we have in several mysql databases to a ...
6
votes
2answers
7k views
Mongo complex sorting?
I know how to sort queries in MongoDB by multiple fields, e.g., db.coll.find().sort({a:1,b:-1}).
Can I sort with a user-defined function; e.g., supposing a and b are integers, by the difference ...
5
votes
1answer
4k views
how to release the caching which is used by Mongodb?
Mongodb use the Memory Mapped File ,when I use a long time , I see the free memory has left less by command 'free -m' in ubuntu and the caching use a lot. Then kill the Mongodb the caching still cost ...
1
vote
1answer
821 views
Ember data multi level hierarchy with embedded always
I am able to use embedded always for one level but I am unable to use it for two level deep model. Need an urgent help
App.Post = DS.Model.extend(
title: DS.attr("string")
comment: ...
56
votes
6answers
22k views
Has anybody actually used django-mongodb? [closed]
I can't find any documentation on this or any forum discussions. Has anybody at least gone through their testapp? I feel like there are errors in their code (deprecated from the most recent version of ...
27
votes
6answers
7k views
Embedded MongoDB when running integration tests
My question is a variation of this one.
Since my Java Web-app project requires a lot of read filters/queries and interfaces with tools like GridFS, I'm struggling to think of a sensible way to ...
39
votes
2answers
8k views
MongoDB Many-to-Many Association
How would you do a many-to-many association with MongoDB?
For example; let's say you have a Users table and a Roles table. Users have many roles, and roles have many users. In SQL land you would ...
12
votes
1answer
2k views
mongodb schema design for blogs
How would you design the schema for a blog-like site with document-based databases (mongodb). The site has the following objects: User, Article, Comment. User can add Comments to Article. Each User ...
33
votes
7answers
10k views
Mongo interface [closed]
Is there any GUI (http or not) to use with Mongo to explore collections, make queries etc?
52
votes
4answers
22k views
mongodb: how to get the last N records?
I can't find anywhere it has been documented this. By default, the find() operation will get the records from beginning. How can I get the last N records in mongodb?
Edit: also I want the returned ...
29
votes
3answers
8k views
MongoDB - paging
When using MongoDB, are there any special patterns for making e.g. a paged view?
say a blog that lists the 10 latest posts where you can navigate backwards to older posts.
Or do one solve it with an ...
11
votes
5answers
16k views
Unique IDs with mongodb
If I were building a blog I could use the blog title as the unique identifier and parse it through the URL. However, what if I wanted to use numbers. You know how twitter has ...
14
votes
3answers
7k views
Auto compact the deleted space in mongodb?
The mongodb document says that
To compact this space, run db.repairDatabase() from the mongo shell (note this operation will block and is slow).
in ...
8
votes
2answers
2k views
Using map/reduce for mapping the properties in a collection
Update: follow-up to MongoDB Get names of all keys in collection.
As pointed out by Kristina, one can use Mongodb 's map/reduce to list the keys in a collection:
db.things.insert( { type : ['dog', ...
20
votes
5answers
14k views
mongodb: insert if not exists
Every day, I receive a stock of documents (an update). What I want to do is inserting each of them if it does not exists.
I also want to keep track of the first time I inserted them, and the last ...
10
votes
2answers
11k views
Get particular element from mongoDB array
I have mongo collection like below
{"auther" : "xyz" , "location" : "zzz" ,
"books" :
[{"book1" : "b1" , "date" : 2-3-00} ,
{"book1" : "b2" , "date" : 4-9-00} ]
}
...
20
votes
2answers
7k views
Batch insert/update using Mongoid?
I googled and all others, but I didn't find the answer. The question is:
Hi, how can I do batch insert with Mongoid to MongoDB?
17
votes
1answer
5k views
How do I convert a property in MongoDB from text to date type?
In MongoDB, I have a document with a field called "ClockInTime" that was imported from CSV as a string.
What does an appropriate db.ClockTime.update() statement look like to convert these text based ...
16
votes
4answers
10k views
MongoDB: How to change the type of a field?
There is a question already in Stackoverflow, very similar with my question.
The thing is that the answer for that questions was for a Java Driver, I am trying to do it in the shell.
I am doing ...
13
votes
1answer
2k views
MongoDB aggregation comparison: group(), $group and MapReduce
I am somewhat confused about when to use group(), aggregate with $group or mapreduce. I read the documentation at http://www.mongodb.org/display/DOCS/Aggregation for group(), ...
14
votes
4answers
11k views
heroku mongohq and mongoid Mongo::ConnectionFailure
UPDATE 9th june 2012:
Setup with mongoid 3.0.0.rc at heroku, see this gist: https://gist.github.com/2900804
UPDATE 22th jan 2011:
Uri now takes precedence in mongoid.yml
...
9
votes
3answers
1k views
Mongodb, sharding and multiple windows services
In order to get sharding to work I need to run two copies of mongod.exe. One as a shard and one as the config server. How can I install both mongod instances as windows services?
19
votes
2answers
2k views
What does it mean to fit “working set” into RAM for MongoDB?
MongoDB is fast, but only when your working set or index can fit into RAM. So if my server has 16G of RAM, does that mean the sizes of all my collections need to be less than or equal to 16G? How does ...
13
votes
3answers
11k views
MongoDB: Combine data from multiple collections in to one..how?
How can i (in mongodb) combine data from multiple collections in to one collection?
Can i use map-reduce if so then how?
I would greatly appreciate some example as i am a novice.
15
votes
2answers
4k views
MongoDB index/RAM relationship
I'm about to adopt MongoDB for a new project and I've chosen it for flexibility, not scalability so will be running it on one machine. From the documentation and web posts I keep reading that all ...
2
votes
1answer
2k views
Range based paging mongodb
on the mongodb docs it says:
(source)
Unfortunately skip can be (very) costly and requires the server to
walk from the beginning of the collection, or index, to get to the
offset/skip position ...
11
votes
3answers
6k views
Querying internal array size in MongoDB
Consider a MongoDB document in users collection:
{ username : 'Alex', tags: ['C#', 'Java', 'C++'] }
Is there any way, to get the length of the tags array from the server side (without passing the ...
4
votes
2answers
2k views
How to fire raw MongoDB queries directly in Ruby
Is there any way that I can fire a raw mongo query directly in Ruby instead of converting them to the native Ruby objects?
I went through Ruby Mongo Tutorial, but I cannot find such a method ...
5
votes
4answers
2k views
Ordering a result set randomly in mongo
I've recently discovered that Mongo has no SQL equivalent to "ORDER BY RAND()" in it's command syntax (https://jira.mongodb.org/browse/SERVER-533)
I've seen the recommendation at ...
1
vote
2answers
307 views
What does Mongo sort on when no sort order is specified?
When we run a Mongo find() query without any sort order specified, what does the database internally use to sort the results?
According to the documentation on the mongo website:
When executing a ...

