डॉक्स से।
आप batchSize
. पास कर सकते हैं AggregationOptions
. के साथ स्प्रिंग मोंगो 2.x संस्करण में
Aggregation aggregation = newAggregation(unwind, group).withOptions(newAggregationOptions().cursorBatchSize(100).build());
डिफ़ॉल्ट बैच आकार के साथ
Aggregation aggregation = newAggregation(unwind, group).withOptions(newAggregationOptions().cursor(new Document()).build());