通过pymongo重命名DocumentDB中数组中的字段



我在AWS中使用docudmentDB(3.6版(。我在AWS中使用了一个python lambda来完成这项任务。任务是重命名数组中的字段。这是我拥有的示例JSON文档。在这里,我需要将"version"重命名为"label"。

{
"_id": "93ee62b2-4a1f-478f-a716-b4e2f435f27d",
"egrouping": [
{
"type": "Video",
"language_code": "eng",
"hierarchy": {
"pype": {
"parent": "episode",
"version": "1",
"uuid": "933433-4a1f-478f-a716-b4e2f435f27d"
}
}
},
{
"type": "Captions",
"language_code": "eng",
"hierarchy": {
"pype": {
"parent": "episode",
"version": "1",
"uuid": "943454-4a1f-478f-a716-b4e2f435f27d"
}
}
}
]
}

以下代码片段我试图重命名"版本"字段,但出现错误:

collection.aggregate([
{
'$project': {
'egrouping': {
'$map': {
"input": "$egrouping",
'as': "egroup",
'in': {
"hierarchy.pype.label": "$$egroup.hierarchy.pype.version"
}
}
}
}
}
])

但我最终出现了这个错误:

"errorMessage": "Aggregation project operator not supported: '$map'",

Amazon DocumentDB不支持$map。有关DocumentDB支持的API的完整列表,请参阅https://docs.aws.amazon.com/documentdb/latest/developerguide/mongo-apis.html.

我们不断地从我们的客户希望使用的API开始逆向工作。您可以在这里关注我们未来的发布https://aws.amazon.com/documentdb/resources/

$map运算符现在在AmazonDocumentDB版本3.64.0中都受支持。

相关内容

  • 没有找到相关文章

最新更新