- MongoDB Async Driver
- Tutorials
- Aggregation
Aggregation Framework
The aggregation pipeline is a framework for data aggregation, modeled on the concept of data processing pipelines.
Prerequisites
The example below requires a
restaurants
collection in thetest
database. To create and populate the collection, follow the directions in github.Include the following import statements:
import com.mongodb.Block;
import com.mongodb.async.client.*;
import com.mongodb.async.SingleResultCallback;
import com.mongodb.client.model.*;
import org.bson.Document;
import java.util.Arrays;
- Include the following callback code which the examples in the tutorials will use:
SingleResultCallback<Void> callbackWhenFinished = new SingleResultCallback<Void>() {
@Override
public void onResult(final Void result, final Throwable t) {
System.out.println("Operation Finished!");
}
};
- Include the following code which the examples in the tutorials will use to print the results of the aggregation:
Block<Document> printBlock = new Block<Document>() {
@Override
public void apply(final Document document) {
System.out.println(document.toJson());
}
};
Connect to a MongoDB Deployment
Connect to a MongoDB deployment and declare and define a MongoDatabase
and a MongoCollection
instances.
For example, include the following code to connect to a standalone MongoDB deployment running on localhost on port 27017
and define database
to refer to the test
database and collection
to refer to the restaurants
collection:
MongoClient mongoClient = MongoClients.create();
MongoDatabase database = mongoClient.getDatabase("test");
MongoCollection<Document> collection = database.getCollection("restaurants");
For additional information on connecting to MongoDB, see Connect to MongoDB.
Perform Aggregation
To perform aggregation, pass a list of aggregation stages to the MongoCollection.aggregate()
method.
The Java driver provides the Aggregates
helper class that contains builders for aggregation stages.
In the following example, the aggregation pipeline
First uses a
$match
stage to filter for documents whosecategories
array field contains the elementBakery
. The example usesAggregates.match
to build the$match
stage.Then, uses a
$group
stage to group the matching documents by thestars
field, accumulating a count of documents for each distinct value ofstars
. The example usesAggregates.group
to build the$group
stage andAccumulators.sum
to build the accumulator expression. For the accumulator expressions for use within the$group
stage, the Java driver providesAccumulators
helper class.
collection.aggregate(Arrays.asList(
Aggregates.match(Filters.eq("categories", "Bakery")),
Aggregates.group("$stars", Accumulators.sum("count", 1))))
.forEach(printBlock, callbackWhenFinished);
Use Aggregation Expressions
For $group accumulator expressions, the Java driver provides Accumulators
helper class. For other aggregation expressions, manually build the expression Document
.
In the following example, the aggregation pipeline uses a $project
stage to return only the name
field and the calculated field firstCategory
whose value is the first element in the categories
array. The example uses Aggregates.project
and various
Projections
methods to build the $project
stage.
collection.aggregate(Arrays.asList(Aggregates.project(Projections.fields(
Projections.excludeId(),
Projections.include("name"),
Projections.computed(
"firstCategory",
new Document("$arrayElemAt",
Arrays.asList("$categories", 0)))))))
.forEach(printBlock, callbackWhenFinished);