MongoDB
 sql >> Datenbank >  >> NoSQL >> MongoDB

Spring – mongodb – Aggregation – Die Option „Cursor“ ist erforderlich

Aus den Dokumenten.

Sie können batchSize übergeben mit AggregationOptions in Spring Mongo 2.x-Version

Aggregation aggregation = newAggregation(unwind, group).withOptions(newAggregationOptions().cursorBatchSize(100).build());

Mit Standardstapelgröße

Aggregation aggregation = newAggregation(unwind, group).withOptions(newAggregationOptions().cursor(new Document()).build());