1

我想知道如何使用 boto 获取可搜索文档的数量?当我尝试:

import boto.cloudsearch
from boto.cloudsearch.domain import Domain    

conn = boto.cloudsearch.connect_to_region("us-east-1")
domain = Domain(conn, conn.describe_domains()[0])
print domain.num_searchable_docs

我明白了

boto.exception.BotoServerError: BotoServerError: 401 Unauthorized
<ErrorResponse xmlns="http://cloudsearch.amazonaws.com/doc/2011-02-01/">
  <Error>
    <Type>Sender</Type>
    <Code>NotAuthorized</Code>
  </Error>
  <RequestId>3a8f8731-137a-11e4-9620-892c28eddd75</RequestId>
</ErrorResponse>

并且cloudsearch2.domain.Domain没有num_searchable_docs领域

4

1 回答 1

2

从亚马逊的 CloudSearch文档中,我发现我必须将查询设置为q=matchall&q.parser=structured&size=0,因此使用 boto 将如下所示。

from boto.cloudsearch2.layer2 import Layer2

layer2 = Layer2()
domain = layer2.lookup('my-domain')
search = domain.get_search_service()
results = search.search(q='matchall', parser='structured', size=0)
return results.hits
于 2014-10-04T06:20:54.883 回答