On this page本页内容
db.collection.aggregate(pipeline, options)
This is a 这是一种mongosh
method. mongosh
方法。This is not the documentation for 这不是Node.js
or other programming language specific driver methods.Node.js
或其他编程语言特定驱动程序方法的文档。
In most cases, mongosh
methods work the same way as the legacy mongo
shell methods. However, some legacy methods are unavailable in mongosh
.
For the legacy mongo
shell documentation, refer to the documentation for the corresponding MongoDB Server release:
For MongoDB API drivers, refer to the language specific MongoDB driver documentation.
Calculates aggregate values for the data in a collection or a view.计算集合或视图中数据的聚合值。
pipeline | array |
|
options | document | aggregate() passes to the aggregate command. aggregate() 传递给aggregate 命令的其他选项。pipeline as an array.pipeline 指定为数组时可用。
|
The options
document can contain the following fields and values:options
文档可以包含以下字段和值:
Changed in version 5.0.在版本5.0中更改。
explain | boolean |
|
allowDiskUse | boolean |
|
cursor | document | cursor field is a document with the field batchSize . cursor 字段的值是具有字段batchSize 的文档。 |
maxTimeMS | non-negative integer |
|
bypassDocumentValidation | boolean |
|
readConcern | document |
|
collation | document |
collation: { locale: <string>, caseLevel: <boolean>, caseFirst: <string>, strength: <int>, numericOrdering: <boolean>, alternate: <string>, maxVariable: <string>, backwards: <boolean> }
|
hint | string or document |
|
comment | string | |
writeConcern | document |
|
let | document |
{ <variable_name_1>: <expression_1>, ..., <variable_name_n>: <expression_n> }
|
explain option, the document that provides details on the processing of the aggregation operation.explain 选项,则指向提供聚合操作处理详细信息的文档。
|
If an error occurs, the 如果发生错误,aggregate()
helper throws an exception.aggregate()
助手将抛出异常。
In 在mongosh
, if the cursor returned from the db.collection.aggregate()
is not assigned to a variable using the var
keyword, then mongosh
automatically iterates the cursor up to 20 times. mongosh
中,如果从db.collection.aggregate()
返回的游标没有使用var
关键字分配给变量,则mongosh
会自动迭代游标最多20次。See Iterate a Cursor in 有关在mongosh
for handling cursors in mongosh
.mongosh
中处理游标的信息,请参阅在mongosh
中迭代游标。
Cursors returned from aggregation only supports cursor methods that operate on evaluated cursors (i.e. cursors whose first batch has been retrieved), such as the following methods:从聚合返回的游标仅支持对评估的游标(即第一批已检索的游标)进行操作的游标方法,例如以下方法:
For more information, see Aggregation Pipeline, Aggregation Reference, Aggregation Pipeline Limits, and 有关更多信息,请参阅聚合管道、聚合引用、聚合管道限制和aggregate
.aggregate
。
New in version 4.0.在版本4.0中新增。
For cursors created inside a session, you cannot call 对于在会话内创建的游标,不能在会话外调用getMore
outside the session.getMore
。
Similarly, for cursors created outside of a session, you cannot call 类似地,对于在会话外部创建的游标,不能在会话内部调用getMore
inside a session.getMore
。
Starting in MongoDB 3.6, MongoDB drivers and 从MongoDB 3.6开始,MongoDB驱动程序和mongosh
associate all operations with a server session, with the exception of unacknowledged write operations. mongosh
将所有操作与服务器会话关联,但未确认的写入操作除外。For operations not explicitly associated with a session (i.e. using 对于与会话没有显式关联的操作(即使用Mongo.startSession()
), MongoDB drivers and mongosh
create an implicit session and associate it with the operation.Mongo.startSession()
),MongoDB驱动程序和mongosh
创建一个隐式会话并将其与操作关联。
If a session is idle for longer than 30 minutes, the MongoDB server marks that session as expired and may close it at any time. 如果会话空闲时间超过30分钟,MongoDB服务器将该会话标记为已过期,并可随时关闭该会话。When the MongoDB server closes the session, it also kills any in-progress operations and open cursors associated with the session. 当MongoDB服务器关闭会话时,它还将终止任何正在进行的操作和与会话相关联的打开游标。This includes cursors configured with 这包括配置了noCursorTimeout()
or a maxTimeMS()
greater than 30 minutes.noCursorTimeout()
或大于30分钟的maxTimeMS()
的游标。
For operations that return a cursor, if the cursor may be idle for longer than 30 minutes, issue the operation within an explicit session using 对于返回游标的操作,如果游标空闲时间可能超过30分钟,请使用Mongo.startSession()
and periodically refresh the session using the refreshSessions
command. Mongo.startSession()
在显式会话中发出操作,并使用refreshSessions
命令定期刷新会话。See Session Idle Timeout for more information.有关详细信息,请参阅会话空闲超时。
db.collection.aggregate()
can be used inside multi-document transactions.可以在多文档事务中使用。
However, the following stages are not allowed within transactions:但是,事务中不允许以下阶段:
You also cannot specify the 您也不能指定explain
option.explain
选项。
getMore
inside the transaction.getMore
。getMore
outside the transaction.getMore
。In most cases, multi-document transaction incurs a greater performance cost over single document writes, and the availability of multi-document transactions should not be a replacement for effective schema design. 在大多数情况下,多文档事务比单文档写入带来更高的性能成本,并且多文档事务的可用性不应取代有效的模式设计。For many scenarios, the denormalized data model (embedded documents and arrays) will continue to be optimal for your data and use cases. 对于许多场景,非规范化数据模型(嵌入文档和数组)将继续适合您的数据和用例。That is, for many scenarios, modeling your data appropriately will minimize the need for multi-document transactions.也就是说,对于许多场景,适当地建模数据将最大限度地减少对多文档事务的需求。
For additional transactions usage considerations (such as runtime limit and oplog size limit), see also Production Considerations.有关其他事务使用注意事项(如运行时限制和oplog大小限制),请参阅生产注意事项。
For 对于不包括db.collection.aggregate()
operation that do not include the $out
or $merge
stages:db.collection.aggregate()
或$merge
阶段的db.collection.aggregate()
操作:
Starting in MongoDB 4.2, if the client that issued the 从MongoDB 4.2开始,如果发出db.collection.aggregate()
disconnects before the operation completes, MongoDB marks the db.collection.aggregate()
for termination (i.e. killOp
on the operation).db.collection.aggregate()
的客户端在操作完成之前断开连接,MongoDB将db.collection.aggregate()
标记为终止(即,在操作上killOp
)。
The following examples use the collection 以下示例使用包含以下文档的集合orders
that contains the following documents:orders
:
{ _id: 1, cust_id: "abc1", ord_date: ISODate("2012-11-02T17:04:11.102Z"), status: "A", amount: 50 } { _id: 2, cust_id: "xyz1", ord_date: ISODate("2013-10-01T17:04:11.102Z"), status: "A", amount: 100 } { _id: 3, cust_id: "xyz1", ord_date: ISODate("2013-10-12T17:04:11.102Z"), status: "D", amount: 25 } { _id: 4, cust_id: "xyz1", ord_date: ISODate("2013-10-11T17:04:11.102Z"), status: "D", amount: 125 } { _id: 5, cust_id: "abc1", ord_date: ISODate("2013-11-12T17:04:11.102Z"), status: "A", amount: 25 }
The following aggregation operation selects documents with status equal to 以下聚合操作选择状态等于"A"
, groups the matching documents by the cust_id
field and calculates the total
for each cust_id
field from the sum of the amount
field, and sorts the results by the total
field in descending order:"A"
的文档,按cust_id
字段对匹配文档进行分组,并根据amount
字段的total
计算每个cust_ id
字段的总和,并按总和字段按降序对结果进行排序:
db.orders.aggregate([ { $match: { status: "A" } }, { $group: { _id: "$cust_id", total: { $sum: "$amount" } } }, { $sort: { total: -1 } } ])
The operation returns a cursor with the following documents:该操作返回包含以下文档的游标:
{ "_id" : "xyz1", "total" : 100 } { "_id" : "abc1", "total" : 75 }
mongosh
iterates the returned cursor automatically to print the results. mongosh
自动迭代返回的游标以打印结果。See Iterate a Cursor in 有关在mongosh
for handling cursors manually in mongosh
.mongosh
中手动处理游标的信息,请参阅在mongosh
中迭代游标。
The following example uses 以下示例使用db.collection.explain()
to view detailed information regarding the execution plan of the aggregation pipeline.db.collection.explain()
查看有关聚合管道执行计划的详细信息。
db.orders.explain().aggregate([ { $match: { status: "A" } }, { $group: { _id: "$cust_id", total: { $sum: "$amount" } } }, { $sort: { total: -1 } } ])
The operation returns a document that details the processing of the aggregation pipeline. For example, the document may show, among other details, which index, if any, the operation used. 该操作返回一个文档,详细说明聚合管道的处理。例如,除其他细节外,文档可以显示所使用的操作的索引(如果有的话)。[1] If the 如果orders
collection is a sharded collection, the document would also show the division of labor between the shards and the merge operation, and for targeted queries, the targeted shards.orders
集合是分片集合,文档还将显示分片和合并操作之间的分工,对于目标查询,显示目标分片。
The intended readers of the explain
output document are humans, and not machines, and the output format is subject to change between releases.explain
输出文档的预期读者是人,而不是机器,输出格式可能会在不同版本之间发生变化。
You can view more verbose explain output by passing the 通过将executionStats
or allPlansExecution
explain modes to the db.collection.explain()
method.executionStats
或allPlansExecution
解释模式传递给db.collection.explain()
方法,可以查看更详细的解释输出。
[1] | |
Each individual pipeline stage has a limit of 100 megabytes of RAM. 每个单独的流水线级的RAM限制为100兆字节。By default, if a stage exceeds this limit, MongoDB produces an error. 默认情况下,如果某个阶段超过此限制,MongoDB将生成错误。To allow pipeline processing to take up more space, set the allowDiskUse option to 要允许管道处理占用更多空间,请将true
to enable writing data to temporary files, as in the following example:allowDiskUse
选项设置为true
,以允许将数据写入临时文件,如下例所示:
var results = db.stocks.aggregate( [ { $sort : { cusip : 1, date: 1 } } ], { allowDiskUse: true } )
Starting in MongoDB 4.2, the profiler log messages and diagnostic log messages includes a 从MongoDB 4.2开始,如果任何聚合阶段由于内存限制而将数据写入临时文件,则探查器日志消息和诊断日志消息将包含一个usedDisk
indicator if any aggregation stage wrote data to temporary files due to memory restrictions.usedDisk
指示符。
To specify an initial batch size for the cursor, use the following syntax for the 要为游标指定初始批大小,请使用以下语法作为cursor
option:cursor
选项:
cursor: { batchSize: <int> }
For example, the following aggregation operation specifies the initial batch size of 例如,以下聚合操作指定游标的初始批大小为0
for the cursor:0
:
db.orders.aggregate( [ { $match: { status: "A" } }, { $group: { _id: "$cust_id", total: { $sum: "$amount" } } }, { $sort: { total: -1 } }, { $limit: 2 } ], { cursor: { batchSize: 0 } } )
A batchSize
of 0
means an empty first batch and is useful for quickly returning a cursor or failure message without doing significant server-side work. batchSize
为0
表示第一批为空,对于快速返回游标或失败消息非常有用,而无需进行大量服务器端工作。Specify subsequent batch sizes to OP_GET_MORE operations as with other MongoDB cursors.与其他MongoDB游标一样,为OP_GET_MORE操作指定后续批处理大小。
mongosh
iterates the returned cursor automatically to print the results. 自动迭代返回的游标以打印结果。See Iterate a Cursor in 有关在mongosh
for handling cursors manually in mongosh
.mongosh
中手动处理游标的信息,请参阅在mongosh
中迭代游标。
Collation排序规则 allows users to specify language-specific rules for string comparison, such as rules for lettercase and accent marks.允许用户为字符串比较指定特定于语言的规则,如字母大小写和重音符号规则。
A collection 集合myColl
has the following documents:myColl
具有以下文档:
{ _id: 1, category: "café", status: "A" } { _id: 2, category: "cafe", status: "a" } { _id: 3, category: "cafE", status: "a" }
The following aggregation operation includes the collation option:以下聚合操作包括排序规则选项:
db.myColl.aggregate( [ { $match: { status: "A" } }, { $group: { _id: "$category", count: { $sum: 1 } } } ], { collation: { locale: "fr", strength: 1 } } );
If performing an aggregation that involves multiple views, such as with 如果执行涉及多个视图的聚合,例如使用$lookup
or $graphLookup
, the views must have the same collation.$lookup
或$graphLookup
,则视图必须具有相同的排序规则。
For descriptions on the collation fields, see Collation Document.有关排序规则字段的说明,请参阅排序规则文档。
Create a collection 使用以下文档创建集合foodColl
with the following documents:foodColl
:
db.foodColl.insertMany( [ { _id: 1, category: "cake", type: "chocolate", qty: 10 }, { _id: 2, category: "cake", type: "ice cream", qty: 25 }, { _id: 3, category: "pie", type: "boston cream", qty: 20 }, { _id: 4, category: "pie", type: "blueberry", qty: 15 } ] )
Create the following indexes:创建以下索引:
db.foodColl.createIndex( { qty: 1, type: 1 } ); db.foodColl.createIndex( { qty: 1, category: 1 } );
The following aggregation operation includes the 以下聚合操作包括hint
option to force the usage of the specified index:hint
选项以强制使用指定索引:
db.foodColl.aggregate( [ { $sort: { qty: 1 }}, { $match: { category: "cake", qty: 10 } }, { $sort: { type: -1 } } ], { hint: { qty: 1, category: 1 } } )
readConcern
Use the 使用readConcern
option to specify the read concern for the operation.readConcern
选项指定操作的读取关注点。
You cannot use the 您不能将$out
or the $merge
stage in conjunction with read concern "linearizable"
. $out
或$merge
阶段与读取关注点"linearizable"
结合使用。That is, if you specify 也就是说,如果为"linearizable"
read concern for db.collection.aggregate()
, you cannot include either stages in the pipeline.db.collection.aggregate()
指定"linearizable"
读取关注点,则不能在管道中包含任何阶段。
The following operation on a replica set specifies a Read Concern of 对副本集的以下操作指定"majority"
to read the most recent copy of the data confirmed as having been written to a majority of the nodes."majority"
的读取关注点,以读取确认已写入大多数节点的数据的最新副本。
"majority"
read concern and "majority"
write concern against the primary of the replica set."majority"
读取关注点和"majority"
写入关注点"majority"
for an aggregation that includes an $out
stage.$out
阶段的聚合指定读关注级别"majority"
。$out
stage to use "majority"
read concern for the aggregation.$out
阶段来使用聚合的"majority"
读取关注点。db.restaurants.aggregate( [ { $match: { rating: { $lt: 5 } } } ], { readConcern: { level: "majority" } } )
A collection named 名为movies
contains documents formatted as such:movies
的集合包含格式如下的文档:
{ "_id" : ObjectId("599b3b54b8ffff5d1cd323d8"), "title" : "Jaws", "year" : 1975, "imdb" : "tt0073195" }
The following aggregation operation finds movies created in 1995 and includes the 下面的聚合操作将查找1995年创建的电影,并包括comment
option to provide tracking information in the logs
, the db.system.profile
collection, and db.currentOp
.comment
选项,以在logs
、db.system.profile
集合和db.currentOp
中提供跟踪信息。
db.movies.aggregate( [ { $match: { year : 1995 } } ], { comment : "match_all_movies_from_1995" } ).pretty()
On a system with profiling enabled, you can then query the 在启用了分析的系统上,您可以查询system.profile
collection to see all recent similar aggregations, as shown below:system.profile
集合以查看所有最近的类似聚合,如下所示:
db.system.profile.find( { "command.aggregate": "movies", "command.comment" : "match_all_movies_from_1995" } ).sort( { ts : -1 } ).pretty()
This will return a set of profiler results in the following format:这将以以下格式返回一组探查器结果:
{ "op" : "command", "ns" : "video.movies", "command" : { "aggregate" : "movies", "pipeline" : [ { "$match" : { "year" : 1995 } } ], "comment" : "match_all_movies_from_1995", "cursor" : { }, "$db" : "video" }, ... }
An application can encode any arbitrary information in the comment in order to more easily trace or identify specific operations through the system. 应用程序可以对注释中的任意信息进行编码,以便更容易地通过系统跟踪或识别特定操作。For instance, an application might attach a string comment incorporating its process ID, thread ID, client hostname, and the user who issued the command.例如,应用程序可能会附加一个字符串注释,其中包含进程ID、线程ID、客户端主机名和发出命令的用户。
let
let
中使用变量New in version 5.0.在版本5.0中新增。
To define variables that you can access elsewhere in the command, use the let option.要定义可以在命令中其他位置访问的变量,请使用let选项。
Create a collection 创建一个包含蛋糕口味销售的cakeSales
containing sales for cake flavors:cakeSales
集合:
db.cakeSales.insertMany( [ { _id: 1, flavor: "chocolate", salesTotal: 1580 }, { _id: 2, flavor: "strawberry", salesTotal: 4350 }, { _id: 3, flavor: "cherry", salesTotal: 2150 } ] )
The following example:以下示例:
salesTotal
greater than 3000, which is the cake with an _id
of 2salesTotal
大于3000的蛋糕,即_id
为2
的蛋糕targetTotal
variable in let
, which is referenced in $gt
as $$targetTotal
let
中定义targetTotal
变量,该变量在$gt
中被引用为$$targetTotal
db.cakeSales.aggregate( [ { $match: { $expr: { $gt: [ "$salesTotal", "$$targetTotal" ] } } } ], { let: { targetTotal: 3000 } } )