我按照以下文档创建表boto dynamodb documentation
message_table_schema = conn.create_schema(
hash_key_name='forum_name',
hash_key_proto_value=str,
range_key_name='subject',
range_key_proto_value=str
)
table = conn.create_table(
name='messages',
schema=message_table_schema,
read_units=10,
write_units=10
)
我正在尝试以下代码,但有些动态对象无法找到create_schema表。
AttributeError: 'DynamoDBConnection' object has no attribute 'create_schema'
如果不推荐使用此方法或是否有其他方法可以创建表格,请与我们联系。
答案 0 :(得分:1)
使用DynamoDBConnection
创建的boto.dynamodb2
没有create_schema
方法。它是 boto.dynamodb.layer2.Layer2
API的一部分。
使用
创建连接import boto.dynamodb
conn = boto.dynamodb.connect_to_region(region)
要创建包含boto.dynamodb2
的表格,请使用此 create_table
方法或 Table
。