All Downloads are FREE. Search and download functionalities are using the official Maven repository.

docs.org.apache.nifi.processors.mongodb.RunMongoAggregation.additionalDetails.md Maven / Gradle / Ivy

The newest version!


# RunMongoAggregation

## Description:

This processor runs a MongoDB aggregation query based on user-defined settings. The following is an example of such a
query (and what the expected input looks like):

```json
[
  {
    "$project": {
      "domain": 1
    },
    "$group": {
      "_id": {
        "domain": "$domain"
      },
      "total": {
        "$sum": 1
      }
    }
  }
]
```




© 2015 - 2025 Weber Informatics LLC | Privacy Policy