Docs HomeMongoDB Manual

$shift (aggregation)

Definition定义

New in version 5.0. 5.0版新增。

$shift

Returns the value from an expression applied to a document in a specified position relative to the current document in the $setWindowFields stage partition.返回应用于文档的表达式中的值,该文档位于$setWindowFields阶段分区中相对于当前文档的指定位置。

The $setWindowFields stage sortBy field value determines the document order. $setWindowFields阶段sortBy字段值确定文档顺序。For more information on how MongoDB compares fields with different types, see BSON comparison order.有关MongoDB如何比较不同类型的字段的更多信息,请参阅BSON比较顺序

$shift is only available in the $setWindowFields stage.仅在$setWindowFields阶段中可用。

$shift syntax:语法:

{
$shift: {
output: <output expression>,
by: <integer>,
default: <default expression>
}
}

$shift takes a document with these fields:获取包含以下字段的文档:

Field字段Description描述
outputSpecifies an expression to evaluate and return in the output. 指定要在输出中计算和返回的表达式
bySpecifies an integer with a numeric document position relative to the current document in the output.指定一个integer,该整数具有相对于输出中当前文档的数字文档位置。
For example: 例如:
  • 1 specifies the document position after the current document.指定当前文档之后的文档位置。
  • -1 specifies the document position before the current document.指定当前文档之前的文档位置。
  • -2 specifies the document position that is two positions before the current document.指定当前文档前两个位置的文档位置。
defaultSpecifies an optional default expression to evaluate if the document position is outside of the implicit $setWindowFields stage window. 如果文档位置在隐式$setWindowFields阶段window之外,则指定要计算的可选默认表达式The implicit window contains all the documents in the partition.隐式窗口包含分区中的所有文档。
The default expression must evaluate to a constant value.default表达式的计算结果必须为常数值。
If you do not specify a default expression, $shift returns null for documents whose positions are outside of the implicit $setWindowFields stage window. 如果未指定default表达式,则对于位置在隐式$setWindowFields阶段窗口之外的文档,$shift将返回null

Behavior行为

$shift returns an error if you specify a window in the $setWindowFields stage.如果在$setWindowFields阶段中指定window,则返回错误。

Examples实例

Create a cakeSales collection that contains cake sales in the states of California (CA) and Washington (WA):创建一个包含加利福尼亚州(CA)和华盛顿州(WA)蛋糕销售的cakeSales系列:

db.cakeSales.insertMany( [
{ _id: 0, type: "chocolate", orderDate: new Date("2020-05-18T14:10:30Z"),
state: "CA", price: 13, quantity: 120 },
{ _id: 1, type: "chocolate", orderDate: new Date("2021-03-20T11:30:05Z"),
state: "WA", price: 14, quantity: 140 },
{ _id: 2, type: "vanilla", orderDate: new Date("2021-01-11T06:31:15Z"),
state: "CA", price: 12, quantity: 145 },
{ _id: 3, type: "vanilla", orderDate: new Date("2020-02-08T13:13:23Z"),
state: "WA", price: 13, quantity: 104 },
{ _id: 4, type: "strawberry", orderDate: new Date("2019-05-18T16:09:01Z"),
state: "CA", price: 41, quantity: 162 },
{ _id: 5, type: "strawberry", orderDate: new Date("2019-01-08T06:12:03Z"),
state: "WA", price: 43, quantity: 134 }
] )

The cakeSales collection is used in the following examples.cakeSales集合用于以下示例。

Shift Using a Positive Integer使用正整数移位

This example uses $shift in the $setWindowFields stage to output the quantity of the cake sales from each document following the current document for each state:本例使用$setWindowFields阶段中的$shift来输出每个state下当前文档后面的每个文档的蛋糕销售quantity

db.cakeSales.aggregate( [
{
$setWindowFields: {
partitionBy: "$state",
sortBy: { quantity: -1 },
output: {
shiftQuantityForState: {
$shift: {
output: "$quantity",
by: 1,
default: "Not available"
}
}
}
}
}
] )

In the example:在示例中:

  • partitionBy: "$state" partitions the documents in the collection by state. state对集合中的文档进行分区There are partitions for CA and WA.CAWA有分区。
  • sortBy: { quantity: -1 } sorts the documents in each partition by quantity in descending order (-1), so the highest quantity is first.quantity降序(-1)对每个分区中的文档进行排序,因此quantity最高的是第一个。
  • output after sortBy:sortBy之后的输出:

    • Sets the shiftQuantityForState field to the quantity value from the documents in each state.shiftQuantityForState字段设置为每个state下文档的quantity值。
    • Uses $shift to return the quantity value from the document that follows the current document in the output.使用$shift返回输出中当前文档后面的文档的quantity值。

      • The document position is specified using the $shift by integer set to 1.文档位置是使用设置为1$shift by integer指定的。
      • For documents outside of the implicit window, $shift returns "Not available", which is specified using the default expression.对于隐式window之外的文档,$shift返回"Not available",这是使用default表达式指定的。

In this example output, the shifted quantity value is shown in the shiftQuantityForState field for each returned document:在本示例输出中,每个返回文档的shiftQuantityForState字段中显示了偏移的quantity值:

{ "_id" : 4, "type" : "strawberry", "orderDate" : ISODate("2019-05-18T16:09:01Z"),
"state" : "CA", "price" : 41, "quantity" : 162, "shiftQuantityForState" : 145 }
{ "_id" : 2, "type" : "vanilla", "orderDate" : ISODate("2021-01-11T06:31:15Z"),
"state" : "CA", "price" : 12, "quantity" : 145, "shiftQuantityForState" : 120 }
{ "_id" : 0, "type" : "chocolate", "orderDate" : ISODate("2020-05-18T14:10:30Z"),
"state" : "CA", "price" : 13, "quantity" : 120, "shiftQuantityForState" : "Not available" }
{ "_id" : 1, "type" : "chocolate", "orderDate" : ISODate("2021-03-20T11:30:05Z"),
"state" : "WA", "price" : 14, "quantity" : 140, "shiftQuantityForState" : 134 }
{ "_id" : 5, "type" : "strawberry", "orderDate" : ISODate("2019-01-08T06:12:03Z"),
"state" : "WA", "price" : 43, "quantity" : 134, "shiftQuantityForState" : 104 }
{ "_id" : 3, "type" : "vanilla", "orderDate" : ISODate("2020-02-08T13:13:23Z"),
"state" : "WA", "price" : 13, "quantity" : 104, "shiftQuantityForState" : "Not available" }

Shift Using a Negative Integer使用负整数移位

This example uses $shift in the $setWindowFields stage to output the quantity of the cake sales from each document before the current document for each state:本例使用$setWindowFields阶段中的$shift来输出每个state的当前文档之前的每个文档的蛋糕销售quantity

db.cakeSales.aggregate( [
{
$setWindowFields: {
partitionBy: "$state",
sortBy: { quantity: -1 },
output: {
shiftQuantityForState: {
$shift: {
output: "$quantity",
by: -1,
default: "Not available"
}
}
}
}
}
] )

In the example:在示例中:

  • partitionBy: "$state" partitions the documents in the collection by state. state对集合中的文档进行分区There are partitions for CA and WA.CAWA有分区。
  • sortBy: { quantity: -1 } sorts the documents in each partition by quantity in descending order (-1), so the highest quantity is first.quantity降序(-1)对每个分区中的文档进行排序,因此quantity最高的是第一个。
  • output after sortBy:sortBy之后的输出:

    • Sets the shiftQuantityForState field to the quantity value from the documents in each state.shiftQuantityForState字段设置为每个state下文档的quantity值。
    • Uses $shift to return the quantity value from the document before the current document in the output.使用$shift返回输出中当前文档之前文档的quantity值。

      • The document position is specified using the $shift by integer set to -1.文档位置是使用设置为-1$shift by integer指定的。
      • For documents outside of the implicit window, $shift returns "Not available", which is specified using the default expression.对于隐式window之外的文档,$shift返回"Not available",这是使用默认表达式指定的。

In this example output, the shifted quantity value is shown in the shiftQuantityForState field for each returned document:在本示例输出中,每个返回文档的shiftQuantityForState字段中显示了偏移的quantity值:

{ "_id" : 4, "type" : "strawberry", "orderDate" : ISODate("2019-05-18T16:09:01Z"),
"state" : "CA", "price" : 41, "quantity" : 162, "shiftQuantityForState" : "Not available" }
{ "_id" : 2, "type" : "vanilla", "orderDate" : ISODate("2021-01-11T06:31:15Z"),
"state" : "CA", "price" : 12, "quantity" : 145, "shiftQuantityForState" : 162 }
{ "_id" : 0, "type" : "chocolate", "orderDate" : ISODate("2020-05-18T14:10:30Z"),
"state" : "CA", "price" : 13, "quantity" : 120, "shiftQuantityForState" : 145 }
{ "_id" : 1, "type" : "chocolate", "orderDate" : ISODate("2021-03-20T11:30:05Z"),
"state" : "WA", "price" : 14, "quantity" : 140, "shiftQuantityForState" : "Not available" }
{ "_id" : 5, "type" : "strawberry", "orderDate" : ISODate("2019-01-08T06:12:03Z"),
"state" : "WA", "price" : 43, "quantity" : 134, "shiftQuantityForState" : 140 }
{ "_id" : 3, "type" : "vanilla", "orderDate" : ISODate("2020-02-08T13:13:23Z"),
"state" : "WA", "price" : 13, "quantity" : 104, "shiftQuantityForState" : 134 }