उन लोगों के लिए जो अभी भी इसका उत्तर खोजने की कोशिश कर रहे हैं:
स्प्रिंग-डेटा-मोंगो संस्करण 2.0.0.M4 से आगे (AFAIK ) MongoTemplate
एक aggregateStream
मिला है विधि।
तो आप निम्न कार्य कर सकते हैं:
AggregationOptions aggregationOptions = Aggregation.newAggregationOptions()
// this is very important: if you do not set the batch size, you'll get all the objects at once and you might run out of memory if the returning data set is too large
.cursorBatchSize(mongoCursorBatchSize)
.build();
data = mongoTemplate.aggregateStream(Aggregation.newAggregation(
Aggregation.group("person_id").count().as("count")).withOptions(aggregationOptions), collectionName, YourClazz.class);