Hi,
I am wondering how much does the document size itself affect the query & aggregation performance.
Lets say I have documents that look like this:
{
datetime: '2017-04-18T07:00:00.000Z',
value: 10
}
and I have 10 million of them, and the query & aggregation time is X.
What if the documents would look like this:
{
datetime: '2017-04-18T07:00:00.000Z',
value: 10,
somefield: 9999999.51,
anothetfield: 'tons of unneeded information that is not related to the aggregation',
anothetfield2: 'tons of unneeded information that is not related to the aggregation',
anothetfield3: 'tons of unneeded information that is not related to the aggregation',
...
}
How will the performance be different? does it have any affect at all? (I'm only worried about query & aggregation performance, not indexing (Which is obvious that will take more time))