【发布时间】:2017-04-17 21:31:26
【问题描述】:
我正在寻找使用 python 的 boto3 模块将项目批量写入 dynamodb,我得到了这个。这是我第一次使用 aws cli 或 boto3。文档说当存在空值和可能的不正确数据类型时会发生验证异常错误,但我已经使用了所有这些,但它似乎不起作用。
dynamodb 是否只喜欢一次写入 25 个项目?如果是这样,我该如何控制这些批次?
我的要求:
client = boto3.client('dynamodb')
response = client.batch_write_item(RequestItems=batch_dict)
batch_dict 的顶部:
{'scraper_exact_urls': [{'PutRequest': {'Item': {'Sku': {'S': 'T104P3'},
'pps_id': {'N': '427285976'},
'scraper_class_name': {'S': 'scraper_class_name'},
'store_id': {'N': '1197386754'},
'updated_by': {'S': 'user'},
'updated_on': {'N': '1480714223'},
'updated_url': {'S': 'http://www.blah.com'}}}},
{'PutRequest': {'Item': {'Sku': {'S': 'T104P3'},
'pps_id': {'N': '427285976'},
'scraper_class_name': {'S': 'scraper_class_name'},
'store_id': {'N': '1197386754'},
'updated_by': {'S': 'user'},
'updated_on': {'N': '1480714223'},
'updated_url': {'S': 'http://www.blah.com'}}}},....
架构:
属性: "pps_id"=>\Aws\DynamoDb\Enum\Type::NUMBER, “sku”=>\Aws\DynamoDb\Enum\Type::STRING, "scraper_class_name"=>\Aws\DynamoDb\Enum\Type::STRING, "store_id"=>\Aws\DynamoDb\Enum\Type::NUMBER, "updated_url"=>\Aws\DynamoDb\Enum\Type::STRING, "updated_by"=>\Aws\DynamoDb\Enum\Type::STRING, "updated_on"=>\Aws\DynamoDb\Enum\Type::NUMBER, 领域: "pps_id", "scraper_class_name",
错误:
ClientError: An error occurred (ValidationException) when calling the BatchWriteItem operation: 1 validation error detected: Value .... Map value must satisfy constraint: [Member must have length less than or equal to 25, Member must have length greater than or equal to 1]
【问题讨论】:
-
我想我在这里找到了答案link
标签: python amazon-web-services amazon-dynamodb aws-cli