InterviewSolution
Saved Bookmarks
| 1. |
Explain the concept of pipeline in the MongoDB aggregation framework. |
|
Answer» An individual stage of an AGGREGATION pipeline is a data processing UNIT. It TAKES in a stream of input DOCUMENTS one at a time, processes each document one at a time, and produces an output stream of documents one at a time (see figure below). |
|