I have a Mongodb schema that looks roughly like:
[
{
"name" : "name1",
"instances" : [
{
"value" : 1,
"date" : ISODate("2015-03-04T00:00:00.000Z")
},
{
"value" : 2,
"date" : ISODate("2015-04-01T00:00:00.000Z")
},
{
"value" : 2.5,
"date" : ISODate("2015-03-05T00:00:00.000Z")
},
...
]
},
{
"name" : "name2",
"instances" : [
...
]
}
]
where the number of instances for each element can be quite big.
I sometimes want to get only a sample of the data, that is, get every 3rd instance, or every 10th instance... you get the picture.
I can achieve this goal by getting all instances and filtering them in my server code, but I was wondering if there's a way to do it by using some aggregation query.
Any ideas?
Updated
Assuming the data structure was flat as @SylvainLeroux suggested below, that is:
[
{"name": "name1", "value": 1, "date": ISODate("2015-03-04T00:00:00.000Z")},
{"name": "name2", "value": 5, "date": ISODate("2015-04-04T00:00:00.000Z")},
{"name": "name1", "value": 2, "date": ISODate("2015-04-01T00:00:00.000Z")},
{"name": "name1", "value": 2.5, "date": ISODate("2015-03-05T00:00:00.000Z")},
...
]
will the task of getting every Nth item (of specific name
) be easier?
Or with just a find block:
Returns a promise whose then() you can invoke to fetch the Nth modulo'ed data.
It seems that your question clearly asked "get every nth instance" which does seem like a pretty clear question.
Query operations like
.find()
can really only return the document "as is" with the exception of general field "selection" in projection and operators such as the positional$
match operator or$elemMatch
that allow a singular matched array element.Of course there is
$slice
, but that just allows a "range selection" on the array, so again does not apply.The "only" things that can modify a result on the server are
.aggregate()
and.mapReduce()
. The former does not "play very well" with "slicing" arrays in any way, at least not by "n" elements. However since the "function()" arguments of mapReduce are JavaScript based logic, then you have a little more room to play with.For analytical processes, and for analytical purposes "only" then just filter the array contents via mapReduce using
.filter()
:It's really just a "JavaScript runner" at this point, but if this is just for anaylsis/testing then there is nothing generally wrong with the concept. Of course the output is not "exactly" how your document is structured, but it's as near a facsimile as mapReduce can get.
The other suggestion I see here requires creating a new collection with all the items "denormalized" and inserting the "index" from the array as part of the unqique
_id
key. That may produce something you can query directly, bu for the "every nth item" you would still have to do:So work out and provide the index value of "every nth item" in order to get "every nth item". So that doesn't really seem to solve the problem that was asked.
If the output form seemed more desirable for your "testing" purposes, then a better subsequent query on those results would be using the aggregation pipeline, with
$redact
That at least uses a "logical condition" much the same as what was applied with
.filter()
before to just select the "nth index" items without listing all possible index values as a query argument.Unfortunately, with the aggregation framework it's not possible as this would require an option with
$unwind
to emit an array index/position, of which currently aggregation can't handle. There is an open JIRA ticket for this here SERVER-4588.However, a workaround would be to use MapReduce but this comes at a huge performance cost since the actual calculations of getting the array index are performed using the embedded JavaScript engine (which is slow), and there still is a single global JavaScript lock, which only allows a single JavaScript thread to run at a single time.
With mapReduce, you could try something like this:
Mapping function:
Reduce function:
You can then run the following
mapReduce
function on your collection:And then you can query the result collection to geta list/array of every Nth item of the instance array by using the
map()
cursor method :No
$unwind
is needed here. You can use$push
with$arrayElemAt
to project the array value at requested index inside$group
aggregation.Something like
You can use below aggregation:
$range generates a list of indexes. Third parameter represents non-zero step. For
N = 2
it will be[0,2,4,6...]
, forN = 3
it will return[0,3,6,9...]
and so on. Then you can use $map to get correspinding items frominstances
array.You might like this approach using the
$lookup
aggregation. And probably the most convenient and fastest way without any aggregation trick.Create a collection
Names
with the following schemaand then
Instances
collection having the parent id as"nameId"
Now with
$lookup
aggregation 3.6 syntax you can use$sample
inside the$lookup
pipeline
to get the every Nth element randomly.You can test it here