gpt4 book ai didi

python - Boto 3 DynamoDB batchWriteItem 指定类型时属性值类型无效

转载 作者:太空狗 更新时间:2023-10-30 02:15:46 25 4
gpt4 key购买 nike

尝试对 DynamoDB 表执行 batch_write_item 时,Python Boto3 出现了一个奇怪的问题。我正在关注 documentation并试图写一个单一的项目。该表设置正确,我可以通过 AWS cli 运行 batch-write-item 没问题。

假设客户端和 DynamoDB 设置正确,我运行:

client.batch_write_item(RequestItems={
"myTable": [
{
"PutRequest": {
"Item": {
"name": {
"S": "hello"
},
"value": {
"S": "world"
}
}
}
}
]
})

我收到以下错误:

botocore.exceptions.ClientError:调用 BatchWriteItem 操作时发生错误(ValidationException):无效的属性值类型

如果我更改它,删除类型并运行:

client.batch_write_item(RequestItems={
"myTable": [
{
"PutRequest": {
"Item": {
"name": "hello",
"value": "world"
}
}
}
]
})

它按预期工作。

我需要使用之前的格式,它遵循文档并且与 AWS cli 兼容。

是文档有误还是我遗漏了配置设置、版本问题或其他问题?

最佳答案

这也让我明白了,看起来您使用的是 DynamoDB 资源,而不是客户端。它们都提供相同的功能,但其行为略有不同。这就是您要查找的内容:

http://boto3.readthedocs.io/en/latest/reference/services/dynamodb.html#DynamoDB.ServiceResource.batch_write_item

除此之外,文档仍然很不清楚。这是我发现的:

  • 在使用资源(您当前正在做的事情)时,您可以指定非关键属性的类型,但您不得 strong>指定关键属性的类型
  • 使用客户端(另一种选择)时,您必须指定所有属性的类型。

使用 DynamoDB 资源:

resource = boto3.resource('dynamodb', endpoint_url='http://localhost:8000')

mytable = resource.create_table(
TableName='mytable',
KeySchema=[{ 'AttributeName': 'name', 'KeyType': 'HASH' }],
AttributeDefinitions=[{ 'AttributeName': 'name', 'AttributeType': 'S' }],
ProvisionedThroughput={ 'ReadCapacityUnits': 5, 'WriteCapacityUnits': 5 }
)

try:
resource.batch_write_item(RequestItems={
'mytable': [{ 'PutRequest': { 'Item': {
'name': { 'S': 'myname' },
'value': { 'S': 'myvalue' }
}}}]
})
print(f'resource, specify all types : write succeeded.')
except Exception as e:
print(f'resource, specify all types : write failed: {e}')

try:
resource.batch_write_item(RequestItems={
'mytable': [{ 'PutRequest': { 'Item': {
'name': 'myname',
'value': { 'S': 'myvalue' }
}}}]
})
print(f'resource, specify value only: write succeeded.')
except Exception as e:
print(f'resource, specify value only: write failed: {e}')

try:
resource.batch_write_item(RequestItems={
'mytable': [{ 'PutRequest': { 'Item': {
'name': 'myname',
'value': 'myvalue'
}}}]
})
print(f'resource, specify none : write succeeded.')
except Exception as e:
print(f'resource, specify none : write failed: {e}')

输出

resource, specify all types : write failed:
An error occurred (ValidationException) when calling the BatchWriteItem operation: Invalid attribute value type
resource, specify value only: write succeeded.
resource, specify none : write succeeded.

然后使用 DynamoDB 客户端(将上面所有的“资源”替换为客户端)

client = boto3.client('dynamodb', endpoint_url='http://localhost:8000')
try:
client.batch_write_item(RequestItems={
....

输出

client, specify all types : write succeeded.
client, specify value only: write failed: Parameter validation failed:
Invalid type for parameter RequestItems.mytable[0].PutRequest.Item.name, value: myname, type: <class 'str'>, valid types: <class 'dict'>
client, specify none : write failed: Parameter validation failed:
Invalid type for parameter RequestItems.mytable[0].PutRequest.Item.name, value: myname, type: <class 'str'>, valid types: <class 'dict'>
Invalid type for parameter RequestItems.mytable[0].PutRequest.Item.value, value: myvalue, type: <class 'str'>, valid types: <class 'dict'>

关于python - Boto 3 DynamoDB batchWriteItem 指定类型时属性值类型无效,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48373419/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com