Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Search on multiple collections in MongoDB

I know the theory of MongoDB and the fact that is doesn't support joins, and that I should use embeded documents or denormalize as much as possible, but here goes:

I have multiple documents, such as:

  • Users, which embed Suburbs, but also has: first name, last name
  • Suburbs, which embed States
  • Child, which embeds School, belongs to a User, but also has: first name, last name

Example:

Users: { _id: 1, first_name: 'Bill', last_name: 'Gates', suburb: 1 } { _id: 2, first_name: 'Steve', last_name: 'Jobs', suburb: 3 }  Suburb: { _id: 1, name: 'Suburb A', state: 1 } { _id: 2, name: 'Suburb B', state: 1 } { _id: 3, name: 'Suburb C', state: 3 }  State: { _id: 1, name: 'LA' } { _id: 3, name: 'NY' }  Child: { _id: 1, _user_id: 1, first_name: 'Little Billy', last_name: 'Gates' } { _id: 2, _user_id: 2, first_name: 'Little Stevie', last_name: 'Jobs' } 

The search I need to implement is on:

  • first name, last name of Users and Child
  • State from Users

I know that I have to do multiple queries to get it done, but how can that be achieved? With mapReduce or aggregate?

Can you point out a solution please?

I've tried to use mapReduce but that didn't get me to have documents from Users which contained a state_id, so that's why I brought it up here.

like image 378
Adrian Istrate Avatar asked Nov 18 '13 20:11

Adrian Istrate


People also ask

How do I search multiple collections in MongoDB?

For performing MongoDB Join two collections, you must use the $lookup operator. It is defined as a stage that executes a left outer join with another collection and aids in filtering data from joined documents.

Can a MongoDB have multiple collections?

As mentioned above, a single database can have multiple collections. The following creates multiple collections. Use the show collections commands to list all the collections in a database. To delete a collection, use the db.

How do I join a collection to another collection in MongoDB?

MongoDB is not a relational database, but you can perform a left outer join by using the $lookup stage. The $lookup stage lets you specify which collection you want to join with the current collection, and which fields that should match.

Can MongoDB query joins between collections?

Fortunately, MongoDB Joins can be performed in MongoDB 3.2 as it introduces a new Lookup operation that can perform Join operations on Collections.


1 Answers

This answer is outdated. Since version 3.2, MongoDB has limited support for left outer joins with the $lookup aggregation operator

MongoDB does not do queries which span multiple collections - period. When you need to join data from multiple collections, you have to do it on the application level by doing multiple queries.

  1. Query collection A
  2. Get the secondary keys from the result and put them into an array
  3. Query collection B passing that array as the value of the $in-operator
  4. Join the results of both queries programmatically on the application layer

Having to do this should be rather the exception than the norm. When you frequently need to emulate JOINs like that, it either means that you are still thinking too relational when you design your database schema or that your data is simply not suited for the document-based storage concept of MongoDB.

like image 83
Philipp Avatar answered Sep 24 '22 14:09

Philipp