From fce65147293e8d73eb6de6475c6ee1371645aecb Mon Sep 17 00:00:00 2001 From: Marcello Lamonaca Date: Sat, 3 Sep 2022 15:47:56 +0200 Subject: [PATCH] mongodb: add some aggregate pipeline stages --- docs/database/mongo-db.md | 67 +++++++++++++++++++++------------------ 1 file changed, 37 insertions(+), 30 deletions(-) diff --git a/docs/database/mongo-db.md b/docs/database/mongo-db.md index 24e1cbc..7468853 100644 --- a/docs/database/mongo-db.md +++ b/docs/database/mongo-db.md @@ -253,12 +253,12 @@ mongoexport --collection= ```json { - "_id": Objectid() - "": "value" - "": "value" + "_id": "ObjectId()", + "": "value", + "": "value", "innerDocument": { - "": "value" + "": "value", "": "value" } } @@ -274,13 +274,13 @@ NoSQL databases do not have relations and references. It's the app that has to h ```json { - "": "value" + "": "value", "references": ["id1", "id2"] } // referenced { - "_id": "id1" + "_id": "id1", "": "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. -## 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)`. - -[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: +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. ```sh -db.collection.aggregate([ + +db..aggregate([ + { "$project": { "_id": 0, "": 1, ...} }, + + { "$match": { "" } }, + + { "$group": { + "_id": "", # Group By Expression (Required) + "": { "": "" }, + ... + } + }, + { - $lookup: { - from: , - localField: , - foreignField: , - as: + "$lookup": { + "from": "", + "localField": "", + "foreignField": "", + "as": "" } }, - { $match: { } }, - { $sort: { ... } }, - { $project: { ... } }, - { ... } + + { "$sort": { "": "", "": "", ... } }, + + { "$count": "" }, + + { "$skip": "" } + + { "$limit": "" } + + { ... } ]) ```