34.7.5. 기타 작업
34.7.5.1. 집계
본문에 포함된 지정된 파이프라인으로 집계를 수행합니다. 집계는 길고 복잡한 작업이 될 수 있습니다. 보살피와 함께 사용하십시오.
// route: from("direct:aggregate").to("mongodb:myDb?database=science&collection=notableScientists&operation=aggregate"); List<Bson> aggregate = Arrays.asList(match(or(eq("scientist", "Darwin"), eq("scientist", group("$scientist", sum("count", 1))); from("direct:aggregate") .setBody().constant(aggregate) .to("mongodb:myDb?database=science&collection=notableScientists&operation=aggregate") .to("mock:resultAggregate");
다음 IN 메시지 헤더를 지원합니다.
헤더 키 | 빠른 일정 | description (MongoDB API doc에서 추출) | 예상 유형 |
---|---|---|---|
|
| 일괄 처리별로 반환할 문서 수를 설정합니다. | int/Integer |
|
| 집계 파이프라인 단계를 활성화하여 임시 파일에 데이터를 작성할 수 있습니다. | 부울/Boolean |
기본적으로 모든 결과 목록이 반환됩니다. 이는 결과 크기에 따라 메모리에 무거울 수 있습니다. 더 안전한 대안은 outputType=MongoIterable을 설정하는 것입니다. 다음 프로세서는 메시지 본문에서 반복 가능한 결과를 확인하여 결과를 하나씩 진행할 수 있습니다. 따라서 배치 크기를 설정하고 반복 가능한 값을 반환하면 결과를 효율적으로 검색하고 처리할 수 있습니다.
예는 다음과 같습니다.
List<Bson> aggregate = Arrays.asList(match(or(eq("scientist", "Darwin"), eq("scientist", group("$scientist", sum("count", 1))); from("direct:aggregate") .setHeader(MongoDbConstants.BATCH_SIZE).constant(10) .setBody().constant(aggregate) .to("mongodb:myDb?database=science&collection=notableScientists&operation=aggregate&outputType=MongoIterable") .split(body()) .streaming() .to("mock:resultAggregate");
.split(body())
을 호출하면 경로 아래에 항목을 하나씩 보낼 수 있지만 모든 항목이 메모리에 먼저 로드됩니다. 따라서 .streaming()
호출은 일괄 처리를 통해 메모리에 데이터를 로드해야 합니다.