我正在编写一种使用 MongoRepository 实现查询的方法,我在 Java/Spring 项目中使用聚合,但在我测试时它超出了内存限制。
我试过使用
newAggregationOptions().cursorBatchSize(pageable.getPageSize()).allowDiskUse(true).build()
但没用
我的方法:
...
var matchCriteria = match(criteria);
var unwindVariations = unwind("variations", false);
var sort = sort(Sort.Direction.ASC, "variations.plataformStatus.status");
var countResult = count().as("totalElements");
var aggregationOptions = Aggregation.newAggregationOptions().cursorBatchSize(pageable.getPageSize()).allowDiskUse(true).build();
var countAggregation = newAggregation(
matchCriteria,
unwindVariations,
sort,
countResult)
.withOptions(aggregationOptions);
var totalElements = mongoTemplate.aggregate(countAggregation, "PRODUCT", Map.class).getMappedResults();
错误信息:
com.mongodb.MongoCommandException: Command failed with error 16819 (Location16819): 'Sort exceeded memory limit of 104857600 bytes, but did not opt in to external sorting. Aborting operation. Pass allowDiskUse:true to opt in.' on server cluster0-shard-00-01-du380.mongodb.net:27017.