On this page本页内容
aggregate
¶Performs aggregation operation using the aggregation pipeline. 使用聚合管道执行聚合操作。The pipeline allows users to process data from a collection or other source with a sequence of stage-based manipulations.管道允许用户通过一系列基于阶段的操作来处理来自集合或其他来源的数据。
The command has following syntax:该命令具有以下语法:
Changed in version 3.6.在版本3.6中更改。
Tip
Rather than run the aggregate command directly, most users should use the db.collection.aggregate() helper provided in the mongo shell or the equivalent helper in their driver. 大多数用户应该使用mongo shell中提供的db.collection.aggregate()助手或其驱动程序中的等效帮助程序,而不是直接运行聚合命令。In 2.6 and later, the db.collection.aggregate() helper always returns a cursor.在2.6及更高版本中,db.collection.aggregate()助手始终返回一个游标。
The aggregate command takes the following fields as arguments:聚合命令将以下字段作为参数:
aggregate |
string | 1 for collection agnostic commands.1 。 |
pipeline |
array | |
explain |
boolean |
|
allowDiskUse |
boolean |
|
cursor |
document |
|
maxTimeMS |
| |
bypassDocumentValidation |
boolean |
|
readConcern |
document |
|
collation |
document |
|
hint |
string or document |
Note
|
comment |
any |
Note
|
writeConcern |
document |
|
MongoDB 3.6 removes the use of aggregate command without the MongoDB 3.6删除了不带cursor
option unless the command includes the explain
option. cursor
选项的聚合命令的使用,除非该命令包含解释选项。Unless you include the 除非包含explain
option, you must specify the cursor option.explain
选项,否则必须指定游标选项。
cursor:{}
.cursor:{}
。cursor: {batchSize: <num> }
.cursor: {batchSize: <num> }
。For more information about the aggregation pipeline Aggregation Pipeline, Aggregation Reference, and Aggregation Pipeline Limits.有关聚合管道聚合管道、聚合参考和聚合管道限制的更多信息。
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 the mongo shell associate all operations with a server session, with the exception of unacknowledged write operations. 从MongoDB 3.6开始,MongoDB驱动程序和mongo
shell将所有操作与服务器会话相关联,但未确认的写入操作除外。For operations not explicitly associated with a session (i.e. using Mongo.startSession()), MongoDB drivers and the 对于与会话没有显式关联的操作(即使用mongo
shell creates an implicit session and associates it with the operation.Mongo.startSession()
),MongoDB驱动程序和mongo
shell会创建一个隐式会话,并将其与操作关联。
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或maxTimeMS(大于30分钟)的游标。
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分钟,请使用Session.startSession()
and periodically refresh the session using the refreshSessions command. Session.startSession()
在显式会话中发出该操作并使用refreshSessions命令定期刷新会话。See Session Idle Timeout for more information.有关更多信息,请参阅会话空闲超时。
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
选项。
Important重要的
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 aggregate operation that do not include the $out or $merge stages:对于不包括$out阶段或$merge阶段的聚合操作:
Starting in MongoDB 4.2, if the client that issued the aggregate disconnects before the operation completes, MongoDB marks the aggregate for termination (i.e. killOp on the operation).从MongoDB 4.2开始,如果发出聚合的客户端在操作完成之前断开连接,MongoDB会将聚合标记为终止(即操作上的killOp)。
Changed in version 3.4:在3.4版中更改:MongoDB 3.6 removes the use of aggregate command without the MongoDB 3.6删除了不带cursor
option unless the command includes the explain
option. cursor
选项的聚合命令的使用,除非该命令包含explain
选项。Unless you include the 除非包含explain
option, you must specify the cursor option.explain
选项,否则必须指定cursor
选项。
cursor: {}
.cursor: {}
。cursor: {batchSize: <num> }
.cursor: {batchSize: <num> }
。Rather than run the aggregate command directly, most users should use the db.collection.aggregate() helper provided in the mongo shell or the equivalent helper in their driver. 大多数用户应该使用mongo
shell中提供的db.collection.aggregate()
助手或其驱动程序中的等效帮助程序,而不是直接运行aggregate
命令。In 2.6 and later, the db.collection.aggregate() helper always returns a cursor.在2.6及更高版本中,db.collection.aggregate()
助手始终返回一个游标。
Except for the first two examples which demonstrate the command syntax, the examples in this page use the db.collection.aggregate() helper.除了前两个演示命令语法的示例外,本页中的示例使用db.collection.aggregate()
助手。
A collection 包含以下文档的articles
contains documents such as the following:articles
集合:
The following example performs an aggregate operation on the 下面的示例对articles
collection to calculate the count of each distinct element in the tags
array that appears in the collection.articles
集合执行聚合操作,以计算集合中出现的tags
数组中每个不同元素的计数。
In the mongo shell, this operation can use the db.collection.aggregate() helper as in the following:在mongo
shell中,此操作可以使用db.collection.aggregate()
助手,如下所示:
The following example runs a pipeline with two stages on the admin database. 下面的示例在管理数据库上运行一个带有两个阶段的管道。The first stage runs the $currentOp operation and the second stage filters the results of that operation.第一阶段运行$currentOp
操作,第二阶段筛选该操作的结果。
Note
The aggregate command does not specify a collection and instead takes the form {aggregate: 1}. aggregate
命令不指定集合,而是采用{aggregate:1}
的形式。This is because the initial $currentOp stage does not draw input from a collection. 这是因为最初的$currentOp
阶段没有从集合中提取输入。It produces its own data that the rest of the pipeline uses.它生成自己的数据,供管道的其余部分使用。
The new db.aggregate() helper has been added to assist in running collectionless aggregations such as this. 已添加新的db.aggregate()
助手,以帮助运行无集合的聚合,例如此处。The above aggregation could also be run like this example.上面的聚合也可以像这个例子一样运行。
The following aggregation operation sets the optional field 以下聚合操作将可选字段explain
to true
to return information about the aggregation operation.explain
设置为true
,以返回有关聚合操作的信息。
Note
The explain
output is subject to change between releases.explain
输出可能会在不同版本之间发生变化。
See also参阅
db.collection.aggregate() method
Aggregation pipeline stages have maximum memory use limit. 聚合管道阶段有最大内存使用限制。To handle large datasets, set 要处理大型数据集,请将allowDiskUse
option to true
to enable writing data to temporary files, as in the following example: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
指示符。
See also参阅
To specify an initial batch size, specify the 要指定初始批次大小,请在batchSize
in the cursor
field, as in the following example:cursor
字段中指定batchSize
(批次大小),如下例所示:
The {batchSize: 0 }
document specifies the size of the initial batch size only. {batchSize:0}
文档仅指定初始批大小的大小。Specify subsequent batch sizes to OP_GET_MORE operations as with other MongoDB cursors. 与其他MongoDB游标一样,指定后续批处理大小以执行OP_GET_MORE操作。A batchSize
of 0
means an empty first batch and is useful if you want to quickly get back a cursor or failure message, without doing significant server-side work.batchSize
为0
表示第一批为空,如果希望在不做大量服务器端工作的情况下快速返回游标或失败消息,则该值非常有用。
New in version 3.4.版本3.4中的新功能。
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
集合包含以下文档:
The following aggregation operation includes the Collation option:以下聚合操作包括排序规则选项:
For descriptions on the collation fields, see Collation Document.有关排序规则字段的说明,请参阅排序规则文档。
New in version 3.6.版本3.6中的新功能。
Create a collection 使用以下文档创建集合foodColl
with the following documents:foodColl
:
Create the following indexes:创建以下索引:
The following aggregation operation includes the 以下聚合操作包括hint
option to force the usage of the specified index:hint
选项,用于强制使用指定的索引:
To override the default read concern level, use the 要覆盖默认的读取关注级别,请使用readConcern
option. readConcern
选项。The getMore command uses the readConcern
level specified in the originating aggregate command.
You cannot use the $out or the $merge stage in conjunction with read concern "linearizable". That is, if you specify "linearizable" read concern for db.collection.aggregate(), you cannot include either stages in the pipeline.
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"的读取关注点,以读取确认已写入多数Node的数据的最新副本。
Important重要的
You can disable read concern "majority" for a deployment with a three-member primary-secondary-arbiter (PSA) architecture; however, this has implications for change streams (in MongoDB 4.0 and earlier only) and transactions on sharded clusters. For more information, see Disable Read Concern Majority.
In MongoDB 4.0 and earlier, you cannot include the $out stage to use "majority" read concern for the aggregation.
To ensure that a single thread can read its own writes, use "majority" read concern and "majority" write concern against the primary of the replica set.
See also参阅