mongodb: add some aggregate pipeline stages

This commit is contained in:
Marcello 2022-09-03 15:47:56 +02:00
parent d38a98c370
commit fce6514729

View file

@ -253,12 +253,12 @@ mongoexport --collection=<collection> <options> <connection-string>
```json ```json
{ {
"_id": Objectid() "_id": "ObjectId()",
"<key>": "value" "<key>": "value",
"<key>": "value" "<key>": "value",
"innerDocument": { "innerDocument": {
"<key>": "value" "<key>": "value",
"<key>": "value" "<key>": "value"
} }
} }
@ -274,13 +274,13 @@ NoSQL databases do not have relations and references. It's the app that has to h
```json ```json
{ {
"<key>": "value" "<key>": "value",
"references": ["id1", "id2"] "references": ["id1", "id2"]
} }
// referenced // referenced
{ {
"_id": "id1" "_id": "id1",
"<key>": "value" "<key>": "value"
} }
``` ```
@ -428,35 +428,42 @@ Shard components are:
A **replica set** in MongoDB is a group of `mongod` processes that maintain the `same dataset`. Replica sets provide redundancy and high availability, and are the basis for all production deployments. A **replica set** in MongoDB is a group of `mongod` processes that maintain the `same dataset`. Replica sets provide redundancy and high availability, and are the basis for all production deployments.
## Aggregations ## [Aggregation Framework](https://docs.mongodb.com/manual/reference/operator/aggregation-pipeline/)
Sequence of operations applied to a collection as a _pipeline_ to get a result: `db.collection.aggregate(pipeline, options)`. Sequence of operations applied to a collection as a _pipeline_ to get a result: `db.collection.aggregate(pipeline, options)`.
Each step of the pipeline acts on its inputs and not on the original data in the collection.
[Aggregations Stages][aggeregation_stages_docs]:
- `$lookup`: Right Join
- `$match`: Where
- `$sort`: Order By
- `$project`: Select \*
- ...
[aggeregation_stages_docs]: https://docs.mongodb.com/manual/reference/operator/aggregation-pipeline/
Example:
```sh ```sh
db.collection.aggregate([
db.<collection>.aggregate([
{ "$project": { "_id": 0, "<key>": 1, ...} },
{ "$match": { "<query>" } },
{ "$group": {
"_id": "<expression>", # Group By Expression (Required)
"<key-1>": { "<accumulator-1>": "<expression-1>" },
...
}
},
{ {
$lookup: { "$lookup": {
from: <collection to join>, "from": "<collection to join>",
localField: <field from the input documents>, "localField": "<field from the input documents>",
foreignField: <field from the documents of the "from" collection>, "foreignField": "<field from the documents of the 'from' collection>",
as: <output array field> "as": "<output array field>"
} }
}, },
{ $match: { <query> } },
{ $sort: { ... } }, { "$sort": { "<key-1>": "<sort order>", "<key-2>": "<sort order>", ... } },
{ $project: { ... } },
{ ... } { "$count": "<count-key>" },
{ "$skip": "<positive 64-bit integer>" }
{ "$limit": "<positive 64-bit integer>" }
{ ... }
]) ])
``` ```