Từ tài liệu.
Bạn có thể vượt qua batchSize
với AggregationOptions
trong phiên bản Spring Mongo 2.x
Aggregation aggregation = newAggregation(unwind, group).withOptions(newAggregationOptions().cursorBatchSize(100).build());
Với kích thước lô mặc định
Aggregation aggregation = newAggregation(unwind, group).withOptions(newAggregationOptions().cursor(new Document()).build());