我正在尝试从dynamoDB中的表更新一项的多个属性。我的代码是在Python 3中编写的。每次尝试时,都会遇到一些与更新表达式及其编写方式有关的错误。我检查了AWS站点中的文档和示例,但在与AttributeUpdates相关的第一步中感到困惑。
这是在Node.js中创建的表的索引(我无法以任何方式对其进行修改):
const Pages = dynamodb.define('Page', {
hashKey : 'idPages',
timestamps : true,//creates 2 string variables "createdAt" & "updatedAt"
schema : {
idPages : dynamodb.types.uuid(),//assigns one unique ID it is a string also
url: Joi.string(),
var1InTable: Joi.string(),//want to update this
idSite: Joi.string(),
var2InTable: Joi.array().allow(null)//want to update this
},
indexes: [
{
hashKey: 'idSite',
rangeKey: 'url',
name: 'UrlIndex',
type : 'global'
}
]
});
我要更新的变量有两种,字符串和字符串列表:
dynamodb = boto3.resource('dynamodb', region_name='us-east-1')
tb_pages=dynamodb.Table('pages')
idPages="exampleID123"#hash key
url="www.example.com"#range key
var1String="example string"
var2StrList=["Example","String","List"]
var3NewString="new string variable"
因此,我在亚马逊上查看了示例,并按照示例的结构进行操作:
response=tb_pages.update_item(
Key={
'idPages':item['idPages'],
'url':item['url']
},
UpdateExpression="SET var1InTable= :var1, var2InTable= :var2,var3InTable= :var3",
AttributeUpdates={
':var1': var1String,
':var2': var2StrList,
':var3': var3NewString
},
ReturnValues="UPDATED_NEW"
)
对于AttributeUpdates中的所有变量,我得到以下错误:
Invalid type for parameter AttributeUpdates.:var1, value: example string, type: <class 'str'>, valid types: <class 'dict'>
因此,我跟随AWS boto3 documentation并用字典替换了变量,其中以变量类型的代码为键,而变量为值。
response=tb_pages.update_item(
Key={
'idPages':item['idPages'],
'url':item['url']
},
UpdateExpression="SET var1InTable= :var1, var2InTable= :var2,var3InTable= :var3",
AttributeUpdates={
':var1': {"S":var1String},
':var2': {"L":var2StrList},
':var3': {"S":var3NewString},
},
ReturnValues="UPDATED_NEW"
)
并出现以下错误:
ParamValidationError: Parameter validation failed:
Unknown parameter in AttributeUpdates.:var1: "S", must be one of: Value, Action
Unknown parameter in AttributeUpdates.:var2: "L", must be one of: Value, Action
Unknown parameter in AttributeUpdates.:var3: "S", must be one of: Value, Action
我再次检查了文档,但对放置操作的位置以及应该使用的操作感到困惑。
注意:我可以将字符串列表更改为字符串集,也可以将它们合并为一个字符串以简化操作,因为我不太清楚哪种类型的python对象与{{ 1}}对象在Node.js中定义。
答案 0 :(得分:1)
经过几次尝试并阅读Dynamodb API documentation之后,我发现PutItem方法:
创建新项目,或将旧项目替换为新项目。如果指定表中已经存在与新项目具有相同主键的项目,则新项目将完全替换现有项目。
这可能不是最佳选择,但是通过使用具有相同键和值的putItem,可以替换整个项目,在这种情况下
tb_pages.put_item(
Item={
'idPages':item['idPages'],#hash key
'url':item['url'],#range key
'var1InTable':var1String,
'var2InTable':var2StrList,
'var3InTable':var3NewString,
'otherAttributeToKeep':item['otherAttributeToKeep']#see the note
}
)
注意:不要忘记再次传递该项目的所有属性,因为这是方法将要重写该项目,否则它们将被覆盖并被擦除。
编辑:
代码的问题是我使用的是AttributeUpdate而不是ExpressionAttributeValues,一旦我对其进行了更改并在代码中以“ url”作为键(因为url是保留字),就可以正常使用
response=tb_pages.update_item(
Key={
'idPages':item['idPages'],
'urlz':item['urlz']
},
UpdateExpression="SET var1InTable= :var1, var2InTable= :var2,var3InTable= :var3",
ExpressionAttributeValues={
':var1': var1String,
':var2': var2StrList,
':var3': var3NewString
},
ReturnValues="UPDATED_NEW"
)