The Problem
I need to model a document which is defined as the "whole" to a small, fixed collection of "parts", where both the whole and its parts are queryable.
A sliced pie is a good example of the model I need. Further describing the domain:
- pie:slice has a 1:many (1-10) relationship. Each slice belongs to only one pie, and each pie has 1-10 slices.
- For this example, assume that the pie is sliced at creation, and the number of slices does not change.
- A pie is always queried with its slices. The opposite is not necessarily true, but a queried slice will need access to metadata about the pie
- For the example, assume that "weight" is the only property of a slice. The metadata shared by all slices is much larger than that for each slice. All slices have the same baker, filling, crust, kitchen, and so on. To not have to duplicate all data to each slice would be ideal.
- Both slices and pies must be efficiently queryable and sortable by attributes of the whole pie, or attributes of the slices. Examples:
- Find all pies with exactly 2 slices
- Find all pies with a slice weighing > 10oz
- Find all slices with type "cherry"
- Find the 5 heaviest slices across all pies
The Question:
Given the above points, how would one model a pie and its slices to be efficiently queryable (and if possible, efficiently stored)?
If this is obvious, please answer. Read on for the two approaches I've tried so far and why neither are satisfactory.
What I've tried:
1. Embedding
Embedding parts inside of the whole seemed to be the natural choice.
Pie {
type: String, // `type` and other shared attrs are defined on Pie
slices: [{
_id: ObjectId
weight: Number
}]
}
With this I can query for pies by type, weight, slice weight, and I can query for individual cherry pie slices via aggregate, unzip, and project.
The problem lies in how to sort and query on individual slices. For example, what if I needed to retrieve the 5 heaviest slices from all pies (as described in the problem above). I this is possible to do with aggregation, I don't know how.
2. Separate Collections
After giving up on my first schema I fell back to using two separate collections, joined by a reference id:
Pie {
type: String // `type` and other shared attrs are defined on Pie ...
}
Slice {
pie_id: ObjectId,
type: String, // ... and duplicated to all slices
weight: Number
}
This solves my query problem, but introduces a few more. Here just type is duplicated. In my real application this is far worse, to the point where my analog to Slice is probably 90% duplicate data.
The other problem is that now whenever I want to query for pies, I have to query again for all the slices. Furtermore making the pie is no longer an atomic operation, but a batch of separate inserts.