为什么这个dynamodb查询失败了“找不到请求的资源”?

时间:2015-04-01 16:28:31

标签: python-2.7 amazon-dynamodb boto

我已经加倍检查了该项目是否存在于dynamodb表中。 id是默认的哈希键。

enter image description here

我想使用此代码中的main函数检索内容:

import boto.dynamodb2
from boto.dynamodb2 import table

table='doc'
region='us-west-2'
aws_access_key_id='YYY'
aws_secret_access_key='XXX'

def get_db_conn():
  return boto.dynamodb2.connect_to_region(
            region,
            aws_access_key_id=aws_access_key_id,
            aws_secret_access_key=aws_secret_access_key)

def get_table():
  return table.Table(table, get_db_conn())

def main():
  tbl = get_table()
  doc = tbl.get_item(id='4d7a73b6-2121-46c8-8fc2-54cd4ceb2a30')
  print doc.keys()

但是我得到了这个例外:

  File "scripts/support/find_doc.py", line 31, in <module>
    main()
  File "scripts/support/find_doc.py", line 33, in main
    doc = tbl.get_item(id='4d7a73b6-2121-46c8-8fc2-54cd4ceb2a30')
  File "/Users/antkong/project-ve/lib/python2.7/site-packages/boto/dynamodb2/table.py", line 504, in get_item
    consistent_read=consistent
  File "/Users/antkong/project-ve/lib/python2.7/site-packages/boto/dynamodb2/layer1.py", line 1065, in get_item
    body=json.dumps(params))
  File "/Users/antkong/project-ve/lib/python2.7/site-packages/boto/dynamodb2/layer1.py", line 2731, in make_request
    retry_handler=self._retry_handler)
  File "/Users/antkong/project-ve/lib/python2.7/site-packages/boto/connection.py", line 953, in _mexe
    status = retry_handler(response, i, next_sleep)
  File "/Users/antkong/project-ve/lib/python2.7/site-packages/boto/dynamodb2/layer1.py", line 2774, in _retry_handler
    data)
boto.exception.JSONResponseError: JSONResponseError: 400 Bad Request
{u'message': u'Requested resource not found', u'__type': u'com.amazonaws.dynamodb.v20120810#ResourceNotFoundException'}

为什么我收到此错误消息?

我正在使用boto版本2.34

3 个答案:

答案 0 :(得分:1)

如果你有一个范围键,你必须在get_item中指定,如下所示:

get_item(timestamp=Decimal('1444232509'), id='HASH_SHA1')

在我的表包中我有一个索引(id)和一个范围键(timestamp)。

答案 1 :(得分:0)

问题在于此代码:

def get_table():
  return table.Table(table, get_db_conn())

应该是

def get_table():
  return table.Table(table, connection=get_db_conn())

请注意connection命名参数

答案 2 :(得分:0)

我收到此错误是因为我连接到错误的区域。

要检查表区域,请转到表的“概览”选项卡,然后向下滚动到“ Amazon资源名称(ARN)”字段。

我的ARN以arn:aws:dynamodb:us-east-2:开头。这里的“ us-east-2”是我启动boto3客户端时需要经过的区域。